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": "Copy All Urls", "version": "3.0", "description": "Copy tabs URL to clipboard (formats : text, HTML, JSON or custom). Paste to open multiple URL at one go.", "icons": { "128": "img\/umbrella_128.png" }, "action": { "default_icon": "img\/umbrella_19.png", "default_title": "Copy URLs to clipboard", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "commands": { "copy": { "suggested_key": { "default": "Alt+C" }, "description": "Copy" }, "paste": { "suggested_key": { "default": "Alt+V" }, "description": "Paste" } }, "options_page": "options.html", "permissions": [ "tabs", "clipboardRead", "clipboardWrite", "notifications", "storage", "offscreen" ], "host_permissions": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" } }