Save article to UpNote app
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": "UpNote",
"version": "1.2.1",
"description": "Save article to UpNote app",
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
]
}
],
"permissions": [],
"browser_action": {
"default_icon": {
"16": "16.png",
"32": "32.png"
}
},
"icons": {
"16": "16.png",
"32": "32.png",
"48": "96.png",
"96": "192.png"
},
"browser_specific_settings": {
"gecko": {
"id": "{a20e5019-add8-49db-9199-3c3bea455c3f}"
}
}
}