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

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة Copy Host

قم بتنزيل ملفات الامتداد Copy Host بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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
عنوان صفحة المساعدة 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"
            }
        }
    }
}