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 Extension", "description": "Enable copy paste on websites that have disabled copy paste", "short_name": "ECP", "manifest_version": 3, "version": "1.0", "permissions": [ "storage" ], "host_permissions": [ "<all_urls>" ], "background": { "service_worker": "background.js" }, "action": { "default_title": "Enable Copy Paste Extension", "default_popup": "popup.html" }, "icons": { "16": "icon.png", "32": "icon.png", "128": "icon.png" }, "content_scripts": [ { "matches": [ "<all_urls>" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true } ] }