Smart HTTPS

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

什么是Smart HTTPS?

Smart HTTPS是由Lynn开发的Chrome扩展程序,该扩展的主要功能是“Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.”。

扩展截图

screenshot
screenshot
screenshot

下载Smart HTTPS扩展crx文件

下载Smart HTTPS扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Smart HTTPS Smart HTTPS
ID cmleijjdpceldbelpnpkddofmcmcaknm
官方URL https://chromewebstore.google.com/detail/smart-https/cmleijjdpceldbelpnpkddofmcmcaknm
简介 Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.
文件大小 110 KB
安装次数 15,245
当前版本 0.3.2
更新时间 2022-04-13
上架时间 2020-05-20
评分 4.39/5 共31次评分
开发者 Lynn
电子邮箱 [email protected]
付费类型 free
扩展官网 https://mybrowseraddon.com/smart-https.html
帮助页面URL https://mybrowseraddon.com/smart-https.html
支持的语言 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"
    }
}