iRacing Setup Spotter

This extension finds all posted setups in the current thread and lists them for download

Что такое iRacing Setup Spotter?

iRacing Setup Spotter - это расширение Chrome, разработанное Roel Beckers, и его основная функция - "This extension finds all posted setups in the current thread and lists them for download".

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

screenshot

Скачать файл CRX расширения iRacing Setup Spotter

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

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

                        This extensions finds all setups posted in the current thread of the iRacing forum and shows them on a convenient location. You can directly download from the setup list or click the setup you are interested in to jump to the corresponding post.

Version 1.4
- fixed a couple of multi page bugs
- multi page setup spotting is more stable now                    

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

Название iRacing Setup Spotter iRacing Setup Spotter
ID hgpaplkommmdjkapadhmpodjbnklibck
Официальный URL https://chrome.google.com/webstore/detail/iracing-setup-spotter/hgpaplkommmdjkapadhmpodjbnklibck
Описание This extension finds all posted setups in the current thread and lists them for download
Размер файла 89.53 KB
Количество установок 294
Текущая Версия 1.4
Последнее Обновление 2019-08-16
Дата публикации 2019-08-16
Рейтинг 3.67/5 Всего 3 оценок
Разработчик Roel Beckers
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "iRacing Setup Spotter",
    "description": "This extension finds all posted setups in the current thread and lists them for download",
    "version": "1.4",
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "*:\/\/members.iracing.com\/jforum\/posts\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.members.iracing.com\/jforum\/posts\/*"
            ],
            "js": [
                "jquery-3.1.0.min.js",
                "setupspotter.js"
            ],
            "css": [
                "setupspotter.css"
            ]
        }
    ],
    "web_accessible_resources": [
        "loader-svg.svg",
        "download.png"
    ]
}