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" } } } } |