Inspect and view changes in Bookmarker for Notion 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": 3,
"name": "Bookmarker for Notion",
"author": "Zeppelin Labs",
"version": "0.1.7",
"description": "Eye-candy 21st century bookmarks, straight into your notion workspace",
"homepage_url": "https://bookmarkerfornotion.com/",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"action": {
"default_title": "Open the popup",
"default_popup": "app.html"
},
"background": {
"service_worker": "js/background.js"
},
"permissions": [
"contextMenus",
"activeTab",
"scripting"
],
"content_scripts": [
{
"all_frames": true,
"matches": [
"http://*/*",
"https://*/*",
"<all_urls>"
],
"js": [
"js/content.js"
]
}
],
"web_accessible_resources": [
{
"resources": [
"app.html"
],
"matches": [
"<all_urls>"
]
}
]
}