HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
Cos'è HTTP - HTTPS Toggle?
HTTP - HTTPS Toggle è un'estensione di Chrome sviluppata da Mayank Singhal, e la sua funzione principale è "This extension toggles the current tab's URL between http and https.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HTTP - HTTPS Toggle
Scarica i file di estensione HTTP - HTTPS Toggle in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | dlfpljbhokbnchngpchnfkeopkgfofej |
| URL Ufficiale | https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej |
| Descrizione | This extension toggles the current tab's URL between http and https. |
| Dimensione del File | 14.69 KB |
| Conteggio Installazioni | 184 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2013-06-18 |
| Data di Pubblicazione | 2013-06-17 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | Mayank Singhal |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/mayanksinghal/toggle-https |
| Lingue Supportate | 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"
}
} | |