Localhost HTTPS -> HTTP
A simple extension aimed at developers, which automatically redirects from HTTPS to HTTP when on localhost
Что такое Localhost HTTPS -> HTTP?
Localhost HTTPS -> HTTP - это расширение Chrome, разработанное derks.me.uk, и его основная функция - "A simple extension aimed at developers, which automatically redirects from HTTPS to HTTP when on localhost".
Снимки экрана расширения
Скачать файл CRX расширения Localhost HTTPS -> HTTP
Скачайте файлы расширений Localhost HTTPS -> HTTP в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension automatically attempts to redirect from HTTPS to HTTP when the user is browsing a site locally (localhost / 127.0.0.1).
The redirection happens when a request cannot be processed due to an error: for example "ERR_SSL_PROTOCOL_ERROR".
The user is also notified whenever a redirection happens. Основная информация о расширении
| Название | |
| ID | hocpjjhhkgnbpbcikgabgnpfcmaejklp |
| Официальный URL | https://chromewebstore.google.com/detail/localhost-https-%3E-http/hocpjjhhkgnbpbcikgabgnpfcmaejklp |
| Описание | A simple extension aimed at developers, which automatically redirects from HTTPS to HTTP when on localhost |
| Размер файла | 30.72 KB |
| Количество установок | 71 |
| Текущая Версия | 1.0.0 |
| Последнее Обновление | 2023-01-16 |
| Дата публикации | 2023-01-15 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | derks.me.uk |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://derks.me.uk/ |
| Поддерживаемые языки | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"version": "1.0.0",
"name": "Localhost HTTPS -> HTTP",
"description": "A simple extension aimed at developers, which automatically redirects from HTTPS to HTTP when on localhost",
"icons": {
"48": "icons\/tabler\/icon_128.png",
"128": "icons\/tabler\/icon_128.png"
},
"background": {
"service_worker": "main.js",
"type": "module"
},
"permissions": [
"notifications",
"webNavigation"
]
} | |