-
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.
- Loading branch information
1 parent
62f2f78
commit 034f0ab
Showing
2 changed files
with
69 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,38 +1,44 @@ | ||
{ | ||
"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.3.0", | ||
"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.3.0", | ||
"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" | ||
} | ||
} |