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 Links - Premium Features",
"version": "1.0.4",
"description": "Copy all links on the page with premium features.",
"permissions": [
"storage",
"activeTab",
"scripting"
],
"background": {
"service_worker": "background.js"
},
"action": {
"default_popup": "popup.html",
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
},
"commands": {
"copy_all_links": {
"suggested_key": {
"default": "Alt+Shift+C",
"mac": "Alt+Shift+C"
},
"description": "Copy all links on the current page"
}
},
"web_accessible_resources": [
{
"resources": [
"crypto-js.min.js"
],
"matches": [
"<all_urls>"
]
}
],
"content_scripts": [
{
"matches": [
"https:\/\/extensionpay.com\/*"
],
"js": [
"ExtPay.js"
],
"run_at": "document_start"
}
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
}
}