Tab Copy
Copy all tabs to clipboard. No bells and whistles.
Hvad er Tab Copy?
Tab Copy er en Chrome-udvidelse udviklet af Reece, og dens hovedfunktion er "Copy all tabs to clipboard. No bells and whistles.".
Udvidelsesskærmbilleder
Download Tab Copy-udvidelses-CRX-fil
Download Tab Copy-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Copies the tabs that are open in the window to the clipboard Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | lmnpchdgonnfapjelemnfafmgkndeefc |
| Officiel URL | https://chromewebstore.google.com/detail/tab-copy/lmnpchdgonnfapjelemnfafmgkndeefc |
| Beskrivelse | Copy all tabs to clipboard. No bells and whistles. |
| Filstørrelse | 10.02 KB |
| Antal Installationer | 151 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2019-11-19 |
| Udgivelsesdato | 2019-11-19 |
| Udvikler | Reece |
| [email protected] | |
| Betalingsmetode | free |
| Understøttede Sprog | 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"
}
}
}
} | |