List the URLs of all tabs from the current window as copyable plaintext. Also this extension can load a plaintext list of urls to individual tabs.
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"manifest_version": 2,
"name": "URLs List",
"version": "0.6.0",
"description": "List the URLs of all tabs from the current window as copyable plaintext.",
"homepage_url": "https://github.com/moritz-h/urls-list",
"browser_specific_settings": {
"gecko": {
"id": "{88664789-f91e-40e1-adb9-e4e9a8c48867}",
"strict_min_version": "115.0"
}
},
"permissions": [
"activeTab",
"clipboardWrite",
"contextMenus",
"notifications",
"storage",
"tabs"
],
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"browser_style": true,
"default_icon": "icons/icon.svg",
"default_title": "URLs List",
"default_popup": "popup/urls-list.html",
"theme_icons": [
{
"light": "icons/icon-light.svg",
"dark": "icons/icon.svg",
"size": 16
}
]
},
"options_ui": {
"page": "options.html",
"browser_style": true
},
"icons": {
"48": "icons/icon.svg",
"96": "icons/icon.svg"
}
}