URL Copy
This extension will copy the current tab's URL to your clipboard.
Cos'è URL Copy?
URL Copy è un'estensione di Chrome sviluppata da tubaguy50035, e la sua funzione principale è "This extension will copy the current tab's URL to your clipboard.".
Scarica il file CRX dell'estensione URL Copy
Scarica i file di estensione URL Copy 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
This extension allows you to copy the URL of your active tab with one click!
Informazioni di Base sull'Estensione
Nome | |
ID | ipdfpenpabfdkmiegmhmfpoadnbddelj |
URL Ufficiale | https://chrome.google.com/webstore/detail/url-copy/ipdfpenpabfdkmiegmhmfpoadnbddelj |
Descrizione | This extension will copy the current tab's URL to your clipboard. |
Dimensione del File | 9.95 KB |
Conteggio Installazioni | 103 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2013-12-11 |
Data di Pubblicazione | 2013-12-11 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | tubaguy50035 |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "URL Copy", "description": "This extension will copy the current tab's URL to your clipboard.", "version": "1.0", "permissions": [ "tabs", "clipboardWrite" ], "background": { "scripts": [ "bg.js" ], "pages": [ "background.html" ] }, "browser_action": { "default_title": "", "default_icon": "19.png" }, "icons": { "128": "icon.png" } } |