Steam Users Don't Know What They Want

This extension helps explain why some Steam users leave thumbs down reviews for games they can't stop playing

Co to jest Steam Users Don't Know What They Want?

Steam Users Don't Know What They Want to rozszerzenie Chrome opracowane przez andymasteroffish, a jego główną funkcją jest „This extension helps explain why some Steam users leave thumbs down reviews for games they can't stop playing”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Steam Users Don't Know What They Want

Pobierz pliki rozszerzeń Steam Users Don't Know What They Want 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

                        This extension changes reviews of Steam games to "I don't know what I want" if the author does not recommend the game but has played over 24 hours of it.

Update: The extension can now parse numbers with commas because some Team Fortress 2 players have logged 2,000+ hours on a game they do not recommend.                    

Podstawowe informacje o rozszerzeniu

Nazwa Steam Users Don't Know What They Want Steam Users Don't Know What They Want
ID abgbfcdlibmeecalpedlcddjcgjecihn
Oficjalny URL https://chromewebstore.google.com/detail/steam-users-dont-know-wha/abgbfcdlibmeecalpedlcddjcgjecihn
Opis This extension helps explain why some Steam users leave thumbs down reviews for games they can't stop playing
Rozmiar pliku 6.32 KB
Liczba instalacji 30
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2016-08-18
Data Publikacji 2016-08-18
Ocena 4.67/5 Łącznie 6 Oceny
Deweloper andymasteroffish
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Steam Users Don't Know What They Want",
    "short_name": "Steam Reviewers",
    "description": "This extension helps explain why some Steam users leave thumbs down reviews for games they can't stop playing",
    "version": "1.1",
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/store.steampowered.com\/*",
                "http:\/\/steamcommunity.com\/*"
            ],
            "js": [
                "steamdoesntknowwhatitwants.js"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}