Data is synced from the Chrome Web Store. View the official store page for the most current information.
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Allow Copy & Enable Right Click",
"version": "1.0",
"description": "Remove copy protection and restore right-click functionality",
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
},
"permissions": [
"activeTab",
"scripting",
"storage",
"contextMenus"
],
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
},
"background": {
"service_worker": "scripts\/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"css": [
"styles\/content.css"
],
"js": [
"scripts\/content.js"
],
"run_at": "document_end"
}
],
"commands": {
"toggle-extension": {
"suggested_key": {
"default": "Ctrl+Shift+1",
"mac": "Command+Shift+1"
},
"description": "Toggle extension"
}
},
"web_accessible_resources": [
{
"resources": [
"scripts\/qrcode.min.js"
],
"matches": [
"<all_urls>"
]
}
]
}