Export name and url of all installed extensions in Google Chrome
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": "Export links of all extensions",
"version": "1.7",
"description": "Export name and url of all installed extensions in Google Chrome",
"icons": {
"16": "img/16.png",
"48": "img/48.png",
"128": "img/128.png"
},
"offline_enabled": true,
"action": {
"default_icon": "img/16.png"
},
"background": {
"service_worker": "background.js"
},
"host_permissions": [
"http://*/*",
"https://*/*"
],
"permissions": [
"alarms",
"declarativeNetRequest",
"management"
]
}