HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
What is HTTP - HTTPS Toggle?
HTTP - HTTPS Toggle is a Chrome extension developed by Mayank Singhal, and its main feature is "This extension toggles the current tab's URL between http and https.".
Extension Screenshots
Download HTTP - HTTPS Toggle Extension CRX File
Download HTTP - HTTPS Toggle extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | HTTP - HTTPS Toggle |
ID | dlfpljbhokbnchngpchnfkeopkgfofej |
Official URL | https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej |
Description | This extension toggles the current tab's URL between http and https. |
File Size | 14.69 KB |
Installation Count | 184 |
Current Version | 1.0 |
Last Updated | 2013-06-18 |
Publish Date | 2013-06-17 |
Rating | 5.00/5 Total 2 Ratings |
Developer | Mayank Singhal |
Payment Type | free |
Extension Website | https://github.com/mayanksinghal/toggle-https |
Supported Languages | 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" } } |