Inspect and view changes in Open Tabs from Clipboard source codes across current and past versions
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": "Clipboard to Tabs",
"description": "Convert a list of URLs in the clipboard to open tabs, and copy tab URLs to the clipboard",
"version": "1.1.1",
"browser_specific_settings": {
"gecko": {
"strict_min_version": "126.0",
"id": "{d912d569-8daf-4770-a620-8f5757477dae}"
}
},
"icons": {
"512": "img/copy.svg"
},
"browser_action": {
"default_icon": "img/clip2tab.png",
"default_title": "Open clipboard URLs as tabs",
"theme_icons": [
{
"dark": "img/clip2tab.png",
"light": "img/clip2tab-dark.png",
"size": 32
}
]
},
"commands": {
"keyboard-open-urls": {
"suggested_key": {
"default": "Ctrl+Alt+T"
},
"description": "Open clipboard URLs as tabs"
},
"keyboard-copy-urls": {
"suggested_key": {
"default": "Ctrl+Alt+C"
},
"description": "Copy current tab URL(s) to clipboard"
}
},
"background": {
"scripts": [
"background.js"
]
},
"options_page": "options.html",
"options_ui": {
"page": "options.html",
"open_in_tab": false
},
"permissions": [
"clipboardRead",
"contextMenus",
"tabs",
"search"
]
}