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, "version": "1.3", "description": "Copy and Paste multiple links", "name": "UpLink", "action": { "default_popup": "index.html", "default_icon": "icons\/link.png" }, "icons": { "48": "icons\/64Icon.png", "128": "icons\/UpLinkIcon.png" }, "background": { "service_worker": ".\/js\/background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*\/*" ], "js": [ ".\/js\/content-script.js" ] } ], "permissions": [ "contextMenus", "storage", "tabs" ], "commands": { "copy-url": { "suggested_key": { "default": "Ctrl+Shift+5", "mac": "Command+Shift+U" }, "description": "Copies the current pages url" }, "_execute_action": { "suggested_key": { "windows": "Ctrl+Shift+Y", "mac": "Command+Shift+Y" } } } }