Steam Cleaner

The first extension that I made.

Steam Cleaner क्या है?

Steam Cleaner Adam Shaw द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "The first extension that I made."।

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

screenshot

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

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

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

                        Cleans up Steam Greenlight pages (removing extra banners) and adds "Vote Down and Next item" button.

More features to come in the future.                    

एक्सटेंशन की मूल जानकारी

नाम Steam Cleaner Steam Cleaner
ID blocallakhfbheckclfcjhechmkpeibe
आधिकारिक URL https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe
विवरण The first extension that I made.
फ़ाइल का आकार 16.21 KB
स्थापना संख्या 394
वर्तमान संस्करण 1.0
अंतिम अपडेट 2012-11-15
प्रकाशन तिथि 2012-11-14
रेटिंग 3.50/5 कुल 2 रेटिंग्स
डेवलपर Adam Shaw
भुगतान के प्रकार free
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Steam Cleaner",
    "version": "1.0",
    "manifest_version": 2,
    "description": "The first extension that I made.",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*.steamcommunity.com\/*",
                "http:\/\/steamcommunity.com\/*",
                "http:\/\/*.steampowered.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}