Comment any site
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"version": "2.5.7resigned1",
"name": "CommentShow",
"description": "Comment any site",
"icons": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png"
},
"options_page": "options/options.html",
"background": {
"scripts": [
"cs.sha256.js",
"background/cs.background.js"
]
},
"content_scripts": [
{
"matches": [
"http://*/*",
"https://*/*"
],
"css": [
"content_scripts/cs.dialog.css"
],
"js": [
"cs.sha256.js",
"content_scripts/cs.content.js"
]
}
],
"permissions": [
"tabs",
"storage",
"webNavigation",
"http://*/*",
"https://*/*"
],
"browser_action": {
"default_icon": {
"16": "images/icon16.png",
"32": "images/icon32.png",
"48": "images/icon48.png",
"64": "images/icon64.png",
"128": "images/icon128.png"
},
"default_title": "CommentShow",
"default_popup": "popup/popup.html"
},
"web_accessible_resources": [
"images/*"
],
"applications": {
"gecko": {
"id": "{18641d5b-ecc1-44cb-8e8a-9cb4525a94ed}"
}
}
}