Steam Cleaner

The first extension that I made.

Co to jest Steam Cleaner?

Steam Cleaner to rozszerzenie Chrome opracowane przez Adam Shaw, a jego główną funkcją jest „The first extension that I made.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Steam Cleaner

Pobierz pliki rozszerzeń Steam Cleaner w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

More features to come in the future.                    

Podstawowe informacje o rozszerzeniu

Nazwa Steam Cleaner Steam Cleaner
ID blocallakhfbheckclfcjhechmkpeibe
Oficjalny URL https://chromewebstore.google.com/detail/steam-cleaner/blocallakhfbheckclfcjhechmkpeibe
Opis The first extension that I made.
Rozmiar pliku 16.21 KB
Liczba instalacji 394
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2012-11-15
Data Publikacji 2012-11-14
Ocena 3.50/5 Łącznie 2 Oceny
Deweloper Adam Shaw
Typ Płatności free
Obsługiwane Języki 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
        }
    ]
}