Use our Web Clipper to save any website into Notion.
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": "__MSG_webClipperExtension_name__",
"version": "0.2.8",
"description": "__MSG_webClipperExtension_description__",
"icons": {
"32": "icon-32.png",
"128": "icon-128.png"
},
"action": {
"default_icon": {
"32": "icon-32.png",
"128": "icon-128.png"
},
"default_title": "__MSG_webClipperExtension_keyboardShortcutAction__",
"default_popup": "index.html"
},
"commands": {
"_execute_action": {
"suggested_key": {
"windows": "Ctrl+Shift+K",
"mac": "Command+Shift+K",
"chromeos": "Ctrl+Shift+K",
"linux": "Ctrl+Shift+K"
},
"description": "__MSG_webClipperExtension_keyboardShortcutAction__"
}
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"default_locale": "en",
"permissions": [
"activeTab",
"storage",
"cookies"
],
"host_permissions": [
"https://*.notion.so/*",
"https://*.notion.so/"
]
}