HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
Apa itu HTTP - HTTPS Toggle?
HTTP - HTTPS Toggle adalah ekstensi Chrome yang dikembangkan oleh Mayank Singhal, dan fitur utamanya adalah "This extension toggles the current tab's URL between http and https.".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi HTTP - HTTPS Toggle
Unduh file ekstensi HTTP - HTTPS Toggle dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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.
Informasi Dasar Ekstensi
Nama | HTTP - HTTPS Toggle |
ID | dlfpljbhokbnchngpchnfkeopkgfofej |
URL Resmi | https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej |
Deskripsi | This extension toggles the current tab's URL between http and https. |
Ukuran File | 14.69 KB |
Jumlah Instalasi | 184 |
Versi Saat Ini | 1.0 |
Terakhir Diperbarui | 2013-06-18 |
Tanggal Publikasi | 2013-06-17 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Mayank Singhal |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/mayanksinghal/toggle-https |
Bahasa yang Didukung | 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" } } |