OAuth protector

This stops users granting OAuth tokens to non @google.com applications.

Что такое OAuth protector?

OAuth protector - это расширение Chrome, разработанное https://www.idontplaydarts.com, и его основная функция - "This stops users granting OAuth tokens to non @google.com applications.".

Скачать файл CRX расширения OAuth protector

Скачайте файлы расширений OAuth protector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension helps stop users falling victim to OAuth phishing attacks when using Chrome.

When installed OAuth applications developed by non @google.com addresses have their consent screen blocked.                    

Основная информация о расширении

Название OAuth protector OAuth protector
ID pcmilhilmleljakdlblgdepbdoniaoff
Официальный URL https://chrome.google.com/webstore/detail/pcmilhilmleljakdlblgdepbdoniaoff
Описание This stops users granting OAuth tokens to non @google.com applications.
Размер файла 8.54 KB
Количество установок 25
Текущая Версия 0.1
Последнее Обновление 2017-05-11
Дата публикации 2017-05-11
Рейтинг 5.00/5 Всего 5 оценок
Разработчик https://www.idontplaydarts.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "OAuth protector",
    "version": "0.1",
    "icons": {
        "128": "shield.png"
    },
    "description": "This stops users granting OAuth tokens to non @google.com applications.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/accounts.google.com\/signin\/oauth\/consent*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}