Inspect and view changes in Echoplayer Quick Commenter source codes across current and past versions
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,
"name": "Echoplayer Quick Commenter",
"version": "1.2",
"description": "Quickly insert predefined comments into Echoplayer using a tiled layout.",
"permissions": [
"activeTab",
"storage",
"tabs"
],
"browser_specific_settings": {
"gecko": {
"id": "echoplayer-commenter@monash.edu"
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"browser_action": {
"default_popup": "popup.html",
"default_icon": {
"48": "icon.png",
"128": "icon.png"
}
},
"icons": {
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"content_script.js"
]
}
]
}