Tabbard
Copy Tab URLs to Clipboard
Cos'è Tabbard?
Tabbard è un'estensione di Chrome sviluppata da George Chakhidze, e la sua funzione principale è "Copy Tab URLs to Clipboard".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Tabbard
Scarica i file di estensione Tabbard in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Copy URLs (with or without titles) from: — All tabs — Only selected tabs — Only focused window tabs Visit extension options to adjust your preferences.
Informazioni di Base sull'Estensione
Nome | |
ID | jjgomhmmlcknccaafhilfiodnfbommae |
URL Ufficiale | https://chromewebstore.google.com/detail/tabbard/jjgomhmmlcknccaafhilfiodnfbommae |
Descrizione | Copy Tab URLs to Clipboard |
Dimensione del File | 25.74 KB |
Conteggio Installazioni | 126 |
Versione Corrente | 1.1.0.0 |
Ultimo Aggiornamento | 2021-07-04 |
Data di Pubblicazione | 2019-03-09 |
Sviluppatore | George Chakhidze |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/0xfeeddeadbeef/Tabbard |
URL della Pagina di Aiuto | https://github.com/0xfeeddeadbeef/Tabbard/issues |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Tabbard", "short_name": "Tabbard", "version": "1.1.0.0", "description": "Copy Tab URLs to Clipboard", "minimum_chrome_version": "23.0.0.0", "icons": { "16": "assets\/tabs-16x16.png", "24": "assets\/tabs-24x24.png", "32": "assets\/tabs-32x32.png", "48": "assets\/tabs-48x48.png", "64": "assets\/tabs-64x64.png", "72": "assets\/tabs-72x72.png", "96": "assets\/tabs-96x96.png", "128": "assets\/tabs-128x128.png", "256": "assets\/tabs-256x256.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": { "16": "assets\/tabs-16x16.png", "24": "assets\/tabs-24x24.png", "32": "assets\/tabs-32x32.png", "48": "assets\/tabs-48x48.png", "64": "assets\/tabs-64x64.png", "72": "assets\/tabs-72x72.png", "96": "assets\/tabs-96x96.png", "128": "assets\/tabs-128x128.png", "256": "assets\/tabs-256x256.png" }, "default_title": "Copy All Tab URLs" }, "permissions": [ "activeTab", "clipboardWrite", "contextMenus", "storage", "tabs" ], "options_ui": { "page": "options.html", "browser_style": true } } |