Select and open multiple links by drawing a selection box.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"action": {
"default_icon": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"js": [
"content.js"
],
"matches": [
"<all_urls>"
]
}
],
"description": "Select and open multiple links by drawing a selection box.",
"host_permissions": [
"<all_urls>"
],
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"manifest_version": 3,
"name": "Link Selector",
"permissions": [
"storage",
"tabs"
],
"version": "1.3.2",
"update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}