We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af301aa + 2cf3261 commit 08e6a53Copy full SHA for 08e6a53
manifest.json
@@ -3,7 +3,7 @@
3
4
"name": "Web Activity Time Tracker",
5
"short_name": "Web Activity",
6
- "version": "0.7.3",
+ "version": "0.7.4",
7
"minimum_chrome_version": "26",
8
9
"description": "Track your activity in the browser.",
scripts/settings.js
@@ -84,6 +84,8 @@ function addNewBlackSiteClickHandler() {
84
var newBlackSite = document.getElementById('addBlackSiteLbl').value;
85
if (newBlackSite !== '') {
86
addDomainToListBox(newBlackSite);
87
+ if (blackList === undefined)
88
+ blackList = [];
89
blackList.push(newBlackSite);
90
document.getElementById('addBlackSiteLbl').value = '';
91
}
0 commit comments