Tab Copy
Copy all tabs to clipboard. No bells and whistles.
Was ist Tab Copy?
Tab Copy ist eine Chrome-Erweiterung, die von Reece entwickelt wurde, und ihr Hauptmerkmal ist "Copy all tabs to clipboard. No bells and whistles.".
Erweiterungsscreenshots
Tab Copy-Erweiterungs-CRX-Datei herunterladen
Laden Sie Tab Copy-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Copies the tabs that are open in the window to the clipboard Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lmnpchdgonnfapjelemnfafmgkndeefc |
| Offizielle URL | https://chromewebstore.google.com/detail/tab-copy/lmnpchdgonnfapjelemnfafmgkndeefc |
| Beschreibung | Copy all tabs to clipboard. No bells and whistles. |
| Dateigröße | 10.02 KB |
| Installationsanzahl | 151 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2019-11-19 |
| Veröffentlichungsdatum | 2019-11-19 |
| Entwickler | Reece |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Tab Copy",
"version": "1.0",
"description": "Copy all tabs to clipboard. No bells and whistles.",
"permissions": [
"activeTab",
"clipboardWrite",
"tabs"
],
"manifest_version": 2,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"background": {
"scripts": [
"background.js"
]
},
"browser_action": {
"default_title": "Copy to clipboard."
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+Shift+E"
}
}
}
} | |