Inspect and view changes in Unofficial Obsidian 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
{
"manifest_version": 3,
"name": "Unofficial Obsidian Web Clipper",
"version": "0.2.3",
"description": "A clipping extension to create notes in Obsidian.",
"action": {
"default_icon": "logo48.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"options_page": "options.html",
"permissions": [
"activeTab",
"storage"
],
"icons": {
"48": "logo48.png",
"128": "logo128.png"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}