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."입니다.
확장 프로그램 스크린샷
Smart HTTPS 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
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" } } |