Inspect and view changes in Notesnook Web Clipper 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": "Notesnook Web Clipper",
"version": "0.3.4",
"description": "Clip web pages & save interesting things you find on the web directly into Notesnook in a private & secure way.",
"permissions": [
"activeTab",
"tabs",
"storage",
"notifications",
"scripting"
],
"icons": {
"16": "16x16.png",
"32": "32x32.png",
"48": "48x48.png",
"64": "64x64.png",
"128": "128x128.png",
"256": "256x256.png"
},
"host_permissions": [
"https://cors.notesnook.com/*",
"*://app.notesnook.com/*"
],
"optional_host_permissions": [
"http://*/*",
"https://*/*"
],
"manifest_version": 3,
"background": {
"service_worker": "background.bundle.js"
},
"action": {
"default_icon": {
"16": "16x16.png",
"32": "32x32.png",
"48": "48x48.png",
"64": "64x64.png",
"128": "128x128.png",
"256": "256x256.png"
},
"default_title": "Notesnook Web Clipper",
"default_popup": "popup.html"
}
}