-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
button to perform garbage collection cycle
- Loading branch information
1 parent
6943a20
commit 62f2f78
Showing
6 changed files
with
129 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,38 @@ | ||
{ | ||
"name": "tab-data-addon", | ||
"title": "Tab Data", | ||
"id": "jid1-4ogjq7MUzAiCOw", | ||
"description": "Provides user with tab related stats/data", | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"version": "0.2.7", | ||
"permissions": { | ||
"private-browsing": true | ||
}, | ||
"preferences": [ | ||
{ | ||
"name": "memoryInterval", | ||
"title": "How many seconds between memory data collection?", | ||
"type": "string", | ||
"value": "10" | ||
}, | ||
{ | ||
"name": "memoryTracking", | ||
"title": "Enable memory usage tracking?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "memoryUsageOnTabTitles", | ||
"title": "Show memory usage in tab titles?", | ||
"type": "bool", | ||
"value": true | ||
}, | ||
{ | ||
"name": "memoryCautionThreshold", | ||
"title": "Memory caution threshold? (In megabytes)", | ||
"type": "string", | ||
"value": "50" | ||
}, | ||
{ | ||
"name": "memoryCautionColor", | ||
"title": "Color of tab title if threshold exceeded?", | ||
"type": "string", | ||
"value": "#FF5050" | ||
} | ||
] | ||
"name": "tab-data-addon", | ||
"title": "Tab Data", | ||
"id": "jid1-4ogjq7MUzAiCOw", | ||
"description": "Provides user with tab related stats/data", | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"version": "0.2.7", | ||
"permissions": { | ||
"private-browsing": true | ||
}, | ||
"preferences": [{ | ||
"name": "memoryInterval", | ||
"title": "How many seconds between memory data collection?", | ||
"type": "string", | ||
"value": "10" | ||
}, { | ||
"name": "memoryTracking", | ||
"title": "Enable memory usage tracking?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "memoryUsageOnTabTitles", | ||
"title": "Show memory usage in tab titles?", | ||
"type": "bool", | ||
"value": true | ||
}, { | ||
"name": "memoryCautionThreshold", | ||
"title": "Memory caution threshold? (In megabytes)", | ||
"type": "string", | ||
"value": "50" | ||
}, { | ||
"name": "memoryCautionColor", | ||
"title": "Color of tab title if threshold exceeded?", | ||
"type": "string", | ||
"value": "#FF5050" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,29 @@ | ||
{ | ||
"name": "tab-data-firefox", | ||
"version": "0.2.7", | ||
"description": "Firefox addon providing user with tab related stats/data", | ||
"main": "addon/lib/main.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bobbyrne01/tab-data-firefox.git" | ||
}, | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"bugs": { | ||
"url": "https://github.com/bobbyrne01/tab-data-firefox/issues" | ||
}, | ||
"homepage": "https://github.com/bobbyrne01/tab-data-firefox", | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-csslint": "^0.4.0", | ||
"grunt-contrib-jshint": "^0.11.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-html-validation": "^0.1.18", | ||
"grunt-jsbeautifier": "^0.2.7", | ||
"grunt-notify": "^0.4.1", | ||
"grunt-release": "^0.11.0" | ||
} | ||
"name": "tab-data-firefox", | ||
"version": "0.2.7", | ||
"description": "Firefox addon providing user with tab related stats/data", | ||
"main": "addon/lib/main.js", | ||
"scripts": { | ||
"test": "echo \"Error: no test specified\" && exit 1" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/bobbyrne01/tab-data-firefox.git" | ||
}, | ||
"author": "Robert Byrne", | ||
"license": "GNU GPL v3", | ||
"bugs": { | ||
"url": "https://github.com/bobbyrne01/tab-data-firefox/issues" | ||
}, | ||
"homepage": "https://github.com/bobbyrne01/tab-data-firefox", | ||
"devDependencies": { | ||
"grunt": "^0.4.5", | ||
"grunt-contrib-csslint": "^0.4.0", | ||
"grunt-contrib-jshint": "^0.11.0", | ||
"grunt-contrib-watch": "^0.6.1", | ||
"grunt-html-validation": "^0.1.18", | ||
"grunt-jsbeautifier": "^0.2.7", | ||
"grunt-notify": "^0.4.1", | ||
"grunt-release": "^0.11.0" | ||
} | ||
} |