Inspect and view changes in Copy To Notion: Clip anything to 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": "Copy To Notion: Clip anything to Notion",
"short_name": "Copy To Notion",
"description": "Easily capture, organize, and access all your online clips directly in Notion.",
"version": "0.20.0",
"permissions": [
"contextMenus",
"storage",
"activeTab",
"scripting",
"cookies"
],
"background": {
"service_worker": "service-worker-loader.js",
"type": "module"
},
"web_accessible_resources": [
{
"matches": [
"<all_urls>"
],
"resources": [
"src/SuccessPopup/index.html",
"MultiSelection.js",
"ScreenCapture.js",
"assets/*"
],
"use_dynamic_url": false
}
],
"externally_connectable": {
"matches": [
"*://localhost/*",
"*://copytonotion.com/*"
]
},
"action": {
"default_icon": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"default_popup": "src/popup/index.html",
"default_title": "Clip to Notion"
},
"icons": {
"16": "icon-16.png",
"48": "icon-48.png",
"128": "icon-128.png"
},
"host_permissions": [
"*://*/*"
],
"commands": {
"copyCaptureToNotion": {
"suggested_key": {
"default": "Ctrl+Shift+H",
"mac": "Command+Shift+H"
},
"description": "Take a screenshot"
},
"bookmarkUrlToNotion": {
"suggested_key": {
"default": "Ctrl+Shift+U",
"mac": "Command+Shift+U"
},
"description": "Bookmark URL"
},
"makeACommentToNotion": {
"suggested_key": {
"default": "Ctrl+Shift+L",
"mac": "Command+Shift+L"
},
"description": "Save URL with Note"
},
"fullScreenshotToNotion": {
"suggested_key": {
"default": "Ctrl+Shift+F",
"mac": "Command+Shift+F"
},
"description": "Take a full screenshot"
},
"copyTextToNotion": {
"description": "Save selected text"
},
"multiSelectToNotion": {
"description": "Multi select"
},
"saveArticleToNotion": {
"description": "Save article"
},
"_execute_action": {}
}
}