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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}