Inspect and view changes in Backnote 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",
"manifest_version": 2,
"name": "Backnote",
"description": "Saving text snippets made easy. Call a tab on hotkeys and copy/paste text with just moving cursor.",
"version": "1.71",
"homepage_url": "https://polevoyd.com",
"options_page": "options.html",
"icons": {
"128": "images/icon_on.png"
},
"browser_action": {
"default_icon": {
"48": "images/icon_on.png"
},
"default_title": "Backnote"
},
"background": {
"scripts": [
"background.js",
"edit-note.js"
]
},
"commands": {
"backnote": {
"suggested_key": {
"default": "Ctrl+Shift+V"
},
"description": "Sending request to open a backnote tab"
}
},
"content_scripts": [
{
"matches": [
"*://*/*"
],
"js": [
"content-script.js"
]
}
],
"permissions": [
"tabs",
"<all_urls>",
"downloads"
]
}