Fluig Identity
The Fluig Identity plugin allows you to log into a wide variety of web based applications.
Что такое Fluig Identity?
Fluig Identity - это расширение Chrome, разработанное box, и его основная функция - "The Fluig Identity plugin allows you to log into a wide variety of web based applications.".
Снимки экрана расширения
Скачать файл CRX расширения Fluig Identity
Скачайте файлы расширений Fluig Identity в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
The Fluig Identity plugin allows you to log into a wide variety of web based applications from the Fluig Identity launch pad. Once you enter your log in credentials for your favorite applications you can automatically log into them by simply clicking on the appropriate launchpad icon.
Основная информация о расширении
Название | Fluig Identity |
ID | mofhjibbjkonpgnejododmahilkbconf |
Официальный URL | https://chromewebstore.google.com/detail/fluig-identity/mofhjibbjkonpgnejododmahilkbconf |
Описание | The Fluig Identity plugin allows you to log into a wide variety of web based applications. |
Размер файла | 22.79 KB |
Количество установок | 27,141 |
Текущая Версия | 1.2.8 |
Последнее Обновление | 2020-07-03 |
Дата публикации | 2020-07-03 |
Рейтинг | 3.96/5 Всего 27 оценок |
Разработчик | box |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | pt-BR |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Fluig Identity", "short_name": "Fluig Identity", "description": "The Fluig Identity plugin allows you to log into a wide variety of web based applications.", "version": "1.2.8", "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "browser_action": { "default_icon": "icon-128.png", "default_title": "Go to Fluig Identity Launch Pad" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "*:\/\/*\/*\/launchpad\/launchExtension\/*", "*:\/\/*\/launchpad\/launchExtension\/*" ], "js": [ "content.js" ], "run_at": "document_end", "all_frames": true }, { "matches": [ "*:\/\/*\/*\/launchpad\/launchAppList" ], "js": [ "pluginInfo.js" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "plugin.js" ] } } |