Inspect and view changes in Managed Clipboard 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": "Managed Clipboard",
"version": "0.3",
"description": "Can store clipboards as templates and use them @Juergen Waissnix",
"permissions": [
"activeTab",
"scripting",
"clipboardRead",
"contextMenus",
"storage"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_title": "Clipboard Paste on Space",
"default_icon": {
"16": "Images/icon16.png",
"32": "Images/icon32.png",
"48": "Images/icon48.png",
"128": "Images/icon128.png"
}
},
"icons": {
"16": "Images/icon16.png",
"32": "Images/icon32.png",
"48": "Images/icon48.png",
"128": "Images/icon128.png"
},
"web_accessible_resources": [
{
"resources": [
"manage_templates.html",
"manage_templates.js"
],
"matches": [
"<all_urls>"
]
}
],
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}