FUT Helper

This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…

Что такое FUT Helper?

FUT Helper - это расширение Chrome, разработанное p.mykhailov, и его основная функция - "This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…".

Снимки экрана расширения

screenshot
screenshot

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

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

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

                        This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard
First set appropriate convinient keys and then use keyboard instead of mouse                    

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

Название FUT Helper FUT Helper
ID icdicpefgeajbmigaodojedcdljlnkln
Официальный URL https://chrome.google.com/webstore/detail/fut-helper/icdicpefgeajbmigaodojedcdljlnkln
Описание This extension helps to buy and sell FUT cards in the FUT web application much easier using the keyboard First set appropriate…
Размер файла 7.68 KB
Количество установок 67
Текущая Версия 1.1.4
Последнее Обновление 2022-02-01
Дата публикации 2019-11-12
Рейтинг 3.00/5 Всего 2 оценок
Разработчик p.mykhailov
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FUT Helper",
    "short_name": "FH",
    "version": "1.1.4",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.easports.com\/fifa\/ultimate-team\/web-app\/*",
                "*:\/\/www.ea.com\/fifa\/ultimate-team\/web-app\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": []
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "icons": {
        "16": "icon.png",
        "48": "icon.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "web_accessible_resources": [],
    "browser_action": {
        "default_title": "FUT Helper",
        "default_popup": "popup.html"
    }
}