Copy all links on the page with premium features.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Copy All Links - Premium Features",
"version": "1.0.3",
"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"
}
}