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": "Bulk Link Picker - Grab Link in one click",
"short_name": "Bulk Link Picker",
"version": "1.0.0",
"description": "Drag-select & open multiple links fast - Bulk URL Opener, Copy URLs, Grab\/Link Extractor. Open in new tabs\/windows, export CSV\/TXT.",
"action": {
"default_title": "Bulk Link Picker",
"default_popup": "popup.html"
},
"options_page": "linkdash\/options.html",
"background": {
"service_worker": "background.js"
},
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"permissions": [
"storage",
"tabs",
"clipboardRead",
"clipboardWrite"
],
"host_permissions": [
"<all_urls>"
],
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"contentScript.js"
],
"css": [
"contentStyles.css"
],
"run_at": "document_idle",
"all_frames": true
}
]
}