iRacing Setup Spotter

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

iRacing Setup Spotter क्या है?

iRacing Setup Spotter Roel Beckers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension finds all posted setups in the current thread and lists them for download"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में iRacing Setup Spotter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    ]
}