HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
Vad är HTTP - HTTPS Toggle?
HTTP - HTTPS Toggle är en Chrome-tillägg utvecklad av Mayank Singhal, och dess huvudfunktion är "This extension toggles the current tab's URL between http and https.".
Tilläggsskärmbilder
Ladda ner HTTP - HTTPS Toggle-förlängningens CRX-fil
Ladda ner HTTP - HTTPS Toggle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | HTTP - HTTPS Toggle |
ID | dlfpljbhokbnchngpchnfkeopkgfofej |
Officiell webbadress | https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej |
Beskrivning | This extension toggles the current tab's URL between http and https. |
Filstorlek | 14.69 KB |
Antal Installationer | 184 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2013-06-18 |
Publiceringsdatum | 2013-06-17 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | Mayank Singhal |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mayanksinghal/toggle-https |
Stödda Språk | 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" } } |