HTTP - HTTPS Toggle

This extension toggles the current tab's URL between http and https.

O que é HTTP - HTTPS Toggle?

HTTP - HTTPS Toggle é uma extensão do Chrome desenvolvida por Mayank Singhal, e sua principal característica é "This extension toggles the current tab's URL between http and https.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HTTP - HTTPS Toggle

Baixe arquivos de extensão HTTP - HTTPS Toggle 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

                        Toggle between http and https URLs of the current tab by a single click. 

Code available at https://github.com/mayanksinghal/toggle-https with images in case you want to pack this yourself.                    

Informações Básicas da Extensão

Nome HTTP - HTTPS Toggle HTTP - HTTPS Toggle
ID dlfpljbhokbnchngpchnfkeopkgfofej
URL Oficial https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej
Descrição This extension toggles the current tab's URL between http and https.
Tamanho do Arquivo 14.69 KB
Contagem de Instalações 184
Versão Atual 1.0
Última Atualização 2013-06-18
Data de Publicação 2013-06-17
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Mayank Singhal
Tipo de Pagamento free
Site da Extensão https://github.com/mayanksinghal/toggle-https
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HTTP - HTTPS Toggle",
    "description": "This extension toggles the current tab's URL between http and https.",
    "manifest_version": 2,
    "version": "1.0",
    "icons": {
        "16": "toggle-16.png",
        "48": "toggle-48.png",
        "128": "toggle-128.png"
    },
    "permissions": [
        "activeTab"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "browser_action": {
        "default_title": "Toggle HTTP\/HTTPS",
        "default_icon": "toggle-32.png"
    }
}