Skip to content

Commit

Permalink
release 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbyrne01 committed Feb 23, 2015
1 parent 62f2f78 commit 034f0ab
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 63 deletions.
78 changes: 42 additions & 36 deletions addon/package.json
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"
}
]
}
54 changes: 27 additions & 27 deletions package.json
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"
}
}

0 comments on commit 034f0ab

Please sign in to comment.