Smart HTTPS
Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.
O que é Smart HTTPS?
Smart HTTPS é uma extensão do Chrome desenvolvida por Lynn, e sua principal característica é "Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Smart HTTPS
Baixe arquivos de extensão Smart HTTPS no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | Smart HTTPS |
ID | cmleijjdpceldbelpnpkddofmcmcaknm |
URL Oficial | https://chromewebstore.google.com/detail/smart-https/cmleijjdpceldbelpnpkddofmcmcaknm |
Descrição | Automatically changes HTTP protocol to HTTPS, and if loading encounters error, reverts it back to HTTP. |
Tamanho do Arquivo | 110 KB |
Contagem de Instalações | 15,245 |
Versão Atual | 0.3.2 |
Última Atualização | 2022-04-13 |
Data de Publicação | 2020-05-20 |
Classificação | 4.39/5 Total de 31 Avaliações |
Desenvolvedor | Lynn |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://mybrowseraddon.com/smart-https.html |
URL da Página de Ajuda | https://mybrowseraddon.com/smart-https.html |
Idiomas Suportados | 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" } } |