AWS VPN Tab Closer
An extension to detect and close the authentication tab left open by AWS VPN
Что такое AWS VPN Tab Closer?
AWS VPN Tab Closer - это расширение Chrome, разработанное TwoBadRobots, и его основная функция - "An extension to detect and close the authentication tab left open by AWS VPN".
Снимки экрана расширения
Скачать файл CRX расширения AWS VPN Tab Closer
Скачайте файлы расширений AWS VPN Tab Closer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When the AWS VPN clients resubmits your stored credentials it leaves a very annoying tab open in your browser, if you are AFK for a while you can come back to a window full of tabs. This extension will only activate for tabs using the URL http://127.0.0.1:35001 and it will close it as soon as the confirmation message is displayed. This will not affect the sign in process.
Основная информация о расширении
Название | AWS VPN Tab Closer |
ID | eeohkjpjmohadfbgaghdofdphnjhidfg |
Официальный URL | https://chromewebstore.google.com/detail/aws-vpn-tab-closer/eeohkjpjmohadfbgaghdofdphnjhidfg |
Описание | An extension to detect and close the authentication tab left open by AWS VPN |
Размер файла | 3.85 KB |
Количество установок | 317 |
Текущая Версия | 0.1.0 |
Последнее Обновление | 2023-02-24 |
Дата публикации | 2023-02-16 |
Рейтинг | 4.25/5 Всего 4 оценок |
Разработчик | TwoBadRobots |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/dougle/aws-vpn-tab-close |
URL страницы помощи | https://github.com/dougle/aws-vpn-tab-close/issues |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AWS VPN Tab Closer", "version": "0.1.0", "description": "An extension to detect and close the authentication tab left open by AWS VPN", "background": { "service_worker": "scripts\/background.js" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "matches": [ "http:\/\/127.0.0.1:35001\/" ] } ] } |