Show protocol of address

Display protocol (https, http, ftp, ...) from given web address

Show protocol of address là gì?

Show protocol of address là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Display protocol (https, http, ftp, ...) from given web address".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Show protocol of address

Tải xuống các tệp mở rộng Show protocol of address dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Chrome address bar no longer shows protocol in the address bar. This extension brings the protocol information back to you and shows you which protocol is used (i.e. https, http, ftp, ...)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Show protocol of address Show protocol of address
ID dofcajnagbfdbiilfadlpojiikgpiaah
URL Chính Thức https://chromewebstore.google.com/detail/show-protocol-of-address/dofcajnagbfdbiilfadlpojiikgpiaah
Mô tả Display protocol (https, http, ftp, ...) from given web address
Kích Thước Tệp 57.46 KB
Số Lần Cài Đặt 47
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2018-09-11
Ngày Phát Hành 2018-09-11
Nhà Phát Triển Unknown
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Show protocol of address",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Display protocol (https, http, ftp, ...) from given web address",
    "icons": {
        "16": "icons\/icon-16.png",
        "128": "icons\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "webRequest",
        "webNavigation"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon-19.png",
            "38": "icons\/icon-38.png"
        }
    }
}