HTTP - HTTPS Toggle
This extension toggles the current tab's URL between http and https.
Co to jest HTTP - HTTPS Toggle?
HTTP - HTTPS Toggle to rozszerzenie Chrome opracowane przez Mayank Singhal, a jego główną funkcją jest „This extension toggles the current tab's URL between http and https.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia HTTP - HTTPS Toggle
Pobierz pliki rozszerzeń HTTP - HTTPS Toggle w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | dlfpljbhokbnchngpchnfkeopkgfofej |
| Oficjalny URL | https://chromewebstore.google.com/detail/http-https-toggle/dlfpljbhokbnchngpchnfkeopkgfofej |
| Opis | This extension toggles the current tab's URL between http and https. |
| Rozmiar pliku | 14.69 KB |
| Liczba instalacji | 184 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2013-06-18 |
| Data Publikacji | 2013-06-17 |
| Ocena | 5.00/5 Łącznie 2 Oceny |
| Deweloper | Mayank Singhal |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/mayanksinghal/toggle-https |
| Obsługiwane Języki | 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"
}
} | |