Copy Host
This extension allows you to copy the hostname of the current tab to your clipboard.
Τι είναι το Copy Host;
Το Copy Host είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Dheeraj Joshi, και η κύρια λειτουργία του είναι "This extension allows you to copy the hostname of the current tab to your clipboard.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Copy Host
Λήψη αρχείων επέκτασης Copy Host σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Copy Host |
ID | bnimbjbohdeakocjbldadiggnlmlgmie |
Επίσημο URL | https://chromewebstore.google.com/detail/copy-host/bnimbjbohdeakocjbldadiggnlmlgmie |
Περιγραφή | This extension allows you to copy the hostname of the current tab to your clipboard. |
Μέγεθος Αρχείου | 6.77 KB |
Αριθμός Εγκαταστάσεων | 2,141 |
Τρέχουσα Έκδοση | 1.1 |
Τελευταία Ενημέρωση | 2023-12-30 |
Ημερομηνία Δημοσίευσης | 2017-06-10 |
Αξιολόγηση | 4.88/5 Συνολικά 8 Αξιολογήσεις |
Προγραμματιστής | Dheeraj Joshi |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/djadmin/copy-host |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/djadmin/copy-host/issues |
Υποστηριζόμενες Γλώσσες | 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" } } } } |