Smart HTTPS

Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.

Smart HTTPS là gì?

Smart HTTPS là một tiện ích mở rộng Chrome được phát triển bởi Lynn, và tính năng chính của nó là "Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.".

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

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Smart HTTPS

Tải xuống các tệp mở rộng Smart HTTPS 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

                        Smart HTTPS is an extension that helps you always use the secure HTTPS protocol if it is supported by the site's server. 

It automatically changes the HTTP protocol to the secure HTTPS, and if loading errors occur, the extension will revert to the original HTTP protocol.

Key features
a. Automatically change all HTTP requests to the secure HTTPS.
b. All websites (addresses) that do not support HTTPS are remembered to speed up the protocol-check process. Note that you can see and delete these items from the extension's Options page.
c. The toolbar button serves as the extension's ON|OFF switch. Blue indicates ON and Gray is OFF.
d. Add desired websites to the whitelist (see Options page).

Note: to report bugs, please visit the extension homepage (https://mybrowseraddon.com/smart-https.html) and find the bug report form.                    

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

Tên Smart HTTPS Smart HTTPS
ID cmleijjdpceldbelpnpkddofmcmcaknm
URL Chính Thức https://chromewebstore.google.com/detail/smart-https/cmleijjdpceldbelpnpkddofmcmcaknm
Mô tả Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.
Kích Thước Tệp 110 KB
Số Lần Cài Đặt 15,245
Phiên Bản Hiện Tại 0.3.2
Cập Nhật Lần Cuối 2022-04-13
Ngày Phát Hành 2020-05-20
Đánh Giá 4.39/5 Tổng số 31 Đánh Giá
Nhà Phát Triển Lynn
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/smart-https.html
URL Trang Trợ Giúp https://mybrowseraddon.com/smart-https.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.3.2",
    "name": "Smart HTTPS",
    "manifest_version": 3,
    "short_name": "smart-https",
    "host_permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/smart-https.html",
    "description": "Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "permissions": [
        "storage",
        "webRequest",
        "declarativeNetRequest"
    ],
    "action": {
        "default_title": "Smart HTTPS",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}