Copy Host
This extension allows you to copy the hostname of the current tab to your clipboard.
Was ist Copy Host?
Copy Host ist eine Chrome-Erweiterung, die von Dheeraj Joshi entwickelt wurde, und ihr Hauptmerkmal ist "This extension allows you to copy the hostname of the current tab to your clipboard.".
Erweiterungsscreenshots
Copy Host-Erweiterungs-CRX-Datei herunterladen
Laden Sie Copy Host-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bnimbjbohdeakocjbldadiggnlmlgmie |
| Offizielle URL | https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie |
| Beschreibung | This extension allows you to copy the hostname of the current tab to your clipboard. |
| Dateigröße | 6.77 KB |
| Installationsanzahl | 2,141 |
| Aktuelle Version | 1.1 |
| Letztes Update | 2023-12-30 |
| Veröffentlichungsdatum | 2017-06-10 |
| Bewertung | 4.88/5 Insgesamt 8 Bewertungen |
| Entwickler | Dheeraj Joshi |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/djadmin/copy-host |
| Hilfeseite URL | https://github.com/djadmin/copy-host/issues |
| Unterstützte Sprachen | 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"
}
}
}
} | |