Copy Host
This extension allows you to copy the hostname of the current tab to your clipboard.
Cos'è Copy Host?
Copy Host è un'estensione di Chrome sviluppata da Dheeraj Joshi, e la sua funzione principale è "This extension allows you to copy the hostname of the current tab to your clipboard.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Copy Host
Scarica i file di estensione Copy Host 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
Chrome in some cases, prepend http:// to the url when you try to copy. I constantly copy URL from the browser to the shell and it makes me crazy. To avoid that, I built this very basic chrome extension to get only the hostname of the current tab.
`Alt + C` can be used as a keyboard shortcut to copy the hostname to your clipboard directly.
Github: https://github.com/djadmin/copy-host Informazioni di Base sull'Estensione
| Nome | |
| ID | bnimbjbohdeakocjbldadiggnlmlgmie |
| URL Ufficiale | https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie |
| Descrizione | This extension allows you to copy the hostname of the current tab to your clipboard. |
| Dimensione del File | 6.77 KB |
| Conteggio Installazioni | 2,141 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2023-12-30 |
| Data di Pubblicazione | 2017-06-10 |
| Valutazione | 4.88/5 Totale 8 Valutazioni |
| Sviluppatore | Dheeraj Joshi |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/djadmin/copy-host |
| URL della Pagina di Aiuto | https://github.com/djadmin/copy-host/issues |
| Lingue Supportate | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Copy Host",
"short_name": "copyhost",
"description": "This extension allows you to copy the hostname of the current tab to your clipboard.",
"version": "1.1",
"action": {
"default_icon": "img\/icon16.png",
"default_title": "Press the button to copy the hostname to the clipboard",
"default_popup": "popup.html"
},
"icons": {
"16": "img\/icon16.png",
"48": "img\/icon48.png",
"128": "img\/icon128.png"
},
"permissions": [
"activeTab"
],
"commands": {
"_execute_action": {
"suggested_key": {
"default": "Alt+C"
}
}
}
} | |