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",
"name": "Enable Copy Paste for Chrome",
"description": "Activate this extension to enable copy, paste, and right-click on blocked websites.",
"version": "1.0.0",
"manifest_version": 3,
"icons": {
"128": "icon.png"
},
"action": {
"default_popup": "popup.html",
"default_title": "Enable Copy Paste for Chrome",
"default_icon": "icon.png"
},
"permissions": [
"tabs",
"storage",
"scripting",
"notifications"
],
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"*:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"exclude_globs": [
"*:\/\/*.google.com\/*"
],
"js": [
"content.js"
]
}
]
}