Inspect and view changes in Click&Note - Notes Vault 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
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Click&Note - Notes Vault",
"short_name": "Click&Note",
"description": "Click And Note - simple notepad and vault, tool for quickly saving notes, link and text on web pages",
"version": "1.7.0",
"manifest_version": 2,
"omnibox": {
"keyword": "note"
},
"icons": {
"16": "assets/icons/icon16.png",
"32": "assets/icons/icon32.png",
"48": "assets/icons/icon48.png",
"64": "assets/icons/icon64.png",
"128": "assets/icons/icon128.png"
},
"background": {
"persistent": false,
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Click&Note",
"default_popup": "popup/popup.html"
},
"permissions": [
"storage",
"unlimitedStorage",
"downloads",
"tabs",
"*://*/*"
]
}