iRacing Setup Spotter

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

Vad är iRacing Setup Spotter?

iRacing Setup Spotter är en Chrome-tillägg utvecklad av Roel Beckers, och dess huvudfunktion är "This extension finds all posted setups in the current thread and lists them for download".

Tilläggsskärmbilder

screenshot

Ladda ner iRacing Setup Spotter-förlängningens CRX-fil

Ladda ner iRacing Setup Spotter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn iRacing Setup Spotter iRacing Setup Spotter
ID hgpaplkommmdjkapadhmpodjbnklibck
Officiell webbadress https://chrome.google.com/webstore/detail/iracing-setup-spotter/hgpaplkommmdjkapadhmpodjbnklibck
Beskrivning This extension finds all posted setups in the current thread and lists them for download
Filstorlek 89.53 KB
Antal Installationer 294
Aktuell Version 1.4
Senast Uppdaterad 2019-08-16
Publiceringsdatum 2019-08-16
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare Roel Beckers
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    ]
}