Steam Cleaner

The first extension that I made.

What is Steam Cleaner?

Steam Cleaner is a Chrome extension developed by Adam Shaw, and its main feature is "The first extension that I made.".

Extension Screenshots

screenshot

Download Steam Cleaner Extension CRX File

Download Steam Cleaner extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

More features to come in the future.                    

Extension Basic Information

Name Steam Cleaner Steam Cleaner
ID blocallakhfbheckclfcjhechmkpeibe
Official URL https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe
Description The first extension that I made.
File Size 16.21 KB
Installation Count 394
Current Version 1.0
Last Updated 2012-11-15
Publish Date 2012-11-14
Rating 3.50/5 Total 2 Ratings
Developer Adam Shaw
Payment Type free
Supported Languages 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
        }
    ]
}