HTTP to HTTPS

Automatically switched to secure HTTP version of webpages if possible.

什麼是HTTP to HTTPS?

HTTP to HTTPS是由balvin.perrie開發的Chrome擴展程式,該擴展的主要功能是“Automatically switched to secure HTTP version of webpages if possible.”。

擴展截圖

screenshot

下載HTTP to HTTPS擴展crx文件

下載HTTP to HTTPS擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        An extension to automatically use HTTPS protocol when possible. When the extension is enabled, it switches insecure "HTTP" pages to the secure "HTTPS" alternative when the server supports secure communication. In oppose to the popular HTTPS Anywhere extension, this one does not have a predefined set of sites that support HTTPS protocol, instead, it evaluates the unsecured site upon the first usage.

Source code and bug tracker are available at:
https://github.com/balvin-perrie/http-to-https

Notes:
1. If automatic switching to HTTPS protocol for a website causes it to look broken, use the toolbar popup to add the page or the hostname to the exception list and reload the page in the HTTP protocol.
2. You can place your mouse over the toolbar button to get more info about the color codes that this extension uses. Also, make sure to read the FAQs page.

Logs:
v0.1.1
1. Do not redirect *.onion websites based on https://github.com/balvin-perrie/http-to-https/issues/2                    

擴展基本資訊

名稱 HTTP to HTTPS HTTP to HTTPS
ID bodjneffehabmoepacpcomhfakbpagbe
官方網址 https://chromewebstore.google.com/detail/http-to-https/bodjneffehabmoepacpcomhfakbpagbe
簡介 Automatically switched to secure HTTP version of webpages if possible.
檔案大小 98.47 KB
安裝次數 2,313
目前版本 0.1.1
更新時間 2019-01-26
上架時間 2019-01-21
評分 5.00/5 共 2 次評分
開發者 balvin.perrie
電子郵箱 [email protected]
付費類型 free
擴展官網 https://add0n.com/http-to-https.html
說明頁面URL https://add0n.com/http-to-https.html
隱私政策頁面URL https://add0n.com/policies/balvin.perrie.txt
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.1.1",
    "name": "HTTP to HTTPS",
    "description": "Automatically switched to secure HTTP version of webpages if possible.",
    "permissions": [
        "storage",
        "*:\/\/*\/*",
        "webNavigation"
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "button.js",
            "background.js"
        ]
    },
    "homepage_url": "http:\/\/add0n.com\/http-to-https.html",
    "icons": {
        "16": "data\/icons\/16.png",
        "19": "data\/icons\/19.png",
        "32": "data\/icons\/32.png",
        "38": "data\/icons\/38.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png",
        "256": "data\/icons\/256.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "data\/icons\/16.png",
            "19": "data\/icons\/19.png",
            "32": "data\/icons\/32.png",
            "38": "data\/icons\/38.png",
            "48": "data\/icons\/48.png"
        },
        "default_popup": "data\/popup\/index.html"
    }
}