Inspect and view changes in Notepad Sidebar 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": "Notepad Sidebar",
"description": "A very simple notepad for Chrome with sync functionality.",
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"action": {
"default_icon": "icons/19.png",
"default_title": "Notepad Sidebar"
},
"icons": {
"48": "icons/48.png",
"128": "icons/128.png"
},
"permissions": [
"contextMenus",
"bookmarks",
"storage",
"sidePanel"
],
"side_panel": {
"default_path": "popup.html"
},
"offline_enabled": true,
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"manifest_version": 3,
"version": "1.0.0"
}