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": "Copy Decoded URL",
"version": "1.4.5",
"description": "Copy decoded origin url\/link to clipboard (origin no escaped url)",
"manifest_version": 3,
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"48": "icons\/icon-48.png",
"128": "icons\/icon-128.png"
},
"action": {
"default_title": "Copy Decoded URL on Alt+L \/ Ctrl+Shift+L",
"default_popup": "html\/popup.html",
"default_icon": []
},
"commands": {
"copy_decoded_url_to_clipboard": {
"suggested_key": "Alt+L",
"description": "Copy Decoded URL",
"global": false
},
"copy_decoded_url_to_clipboard2": {
"suggested_key": "Ctrl+Shift+L",
"description": "Copy Decoded URL (alternative)",
"global": false
}
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"js\/content-script-init.js"
],
"matches__": [
"*:\/\/*\/*"
],
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
]
}
],
"host_permissions": [
"<all_urls>"
],
"permissions": [
"activeTab",
"scripting"
]
}