Copy Host
This extension allows you to copy the hostname of the current tab to your clipboard.
Qu'est-ce que Copy Host ?
Copy Host est une extension Chrome développée par Dheeraj Joshi, et sa fonction principale est "This extension allows you to copy the hostname of the current tab to your clipboard.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Copy Host
Téléchargez les fichiers d'extension Copy Host au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Copy Host |
ID | bnimbjbohdeakocjbldadiggnlmlgmie |
URL Officiel | https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie |
Description | This extension allows you to copy the hostname of the current tab to your clipboard. |
Taille du Fichier | 6.77 KB |
Nombre d'Installations | 2,141 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2023-12-30 |
Date de Publication | 2017-06-10 |
Évaluation | 4.88/5 Total 8 Évaluations |
Développeur | Dheeraj Joshi |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/djadmin/copy-host |
URL de la Page d'Aide | https://github.com/djadmin/copy-host/issues |
Langues Prises en Charge | 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" } } } } |