HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
Wat is HTTP - HTTPS Toggle?
HTTP - HTTPS Toggle is een Chrome-extensie ontwikkeld door Mayank Singhal, en de belangrijkste functie is "This extension toggles the current tab's URL between http and https.".
Extensie Screenshots
Download het CRX-bestand van de extensie HTTP - HTTPS Toggle
Download HTTP - HTTPS Toggle-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | HTTP - HTTPS Toggle |
ID | dlfpljbhokbnchngpchnfkeopkgfofej |
Officiële URL | https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej |
Beschrijving | This extension toggles the current tab's URL between http and https. |
Bestandsgrootte | 14.69 KB |
Aantal Installaties | 184 |
Huidige Versie | 1.0 |
Laatst Bijgewerkt | 2013-06-18 |
Publicatiedatum | 2013-06-17 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | Mayank Singhal |
Betalingswijze | free |
Extensiewebsite | https://github.com/mayanksinghal/toggle-https |
Ondersteunde Talen | 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" } } |