HTTP - HTTPS Toggle

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

Qu'est-ce que HTTP - HTTPS Toggle ?

HTTP - HTTPS Toggle est une extension Chrome développée par Mayank Singhal, et sa fonction principale est "This extension toggles the current tab's URL between http and https.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension HTTP - HTTPS Toggle

Téléchargez les fichiers d'extension HTTP - HTTPS Toggle au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom HTTP - HTTPS Toggle HTTP - HTTPS Toggle
ID dlfpljbhokbnchngpchnfkeopkgfofej
URL Officiel https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej
Description This extension toggles the current tab's URL between http and https.
Taille du Fichier 14.69 KB
Nombre d'Installations 184
Version Actuelle 1.0
Dernière Mise à Jour 2013-06-18
Date de Publication 2013-06-17
Évaluation 5.00/5 Total 2 Évaluations
Développeur Mayank Singhal
Type de Paiement free
Site Web de l'Extension https://github.com/mayanksinghal/toggle-https
Langues Prises en Charge 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"
    }
}