Takes notes and stick them to webpages or websites.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 2,
"name": "Net Notes",
"description": "Takes notes and stick them to webpages or websites.",
"version": "2.02",
"browser_action": {
"default_icon": "stickynote.png",
"default_title": "Notes time!"
},
"background": {
"scripts": [
"background.js"
],
"persistent": false
},
"permissions": [
"storage",
"tabs",
"notifications",
"unlimitedStorage"
],
"web_accessible_resources": [
"stickynote2.png"
]
}