Inspect and view changes in MultiClip 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": "__MSG_Name__",
"description": "__MSG_description__",
"version": "0.52",
"author": "Adépòjù Olúwáségun",
"default_locale": "en",
"homepage_url": "https://github.com/Oluwasegun-AA/MultiClip",
"background": {
"service_worker": "public/src/background.js"
},
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'"
},
"action": {
"default_icon": {
"16": "public/client/icon.png",
"32": "public/client/icon.png",
"48": "public/client/icon.png",
"128": "public/client/icon.png"
},
"default_popup": "public/client/popup.html"
},
"icons": {
"16": "public/client/icon.png",
"32": "public/client/icon.png",
"48": "public/client/icon.png",
"128": "public/client/icon.png"
},
"permissions": [
"activeTab",
"contextMenus",
"clipboardWrite",
"clipboardRead",
"storage"
],
"host_permissions": [
"*://*/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"public/src/contentScript.js"
]
}
],
"offline_enabled": true,
"commands": {
"add_clips": {
"suggested_key": {
"windows": "Ctrl+C",
"mac": "Command+C"
},
"description": "add copied clips to clipboard"
}
}
}