Steam Popularity Filter

Gives the ability to filter search results based on popularity of games.

Co to jest Steam Popularity Filter?

Steam Popularity Filter to rozszerzenie Chrome opracowane przez Necroblight, a jego główną funkcją jest „Gives the ability to filter search results based on popularity of games.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Steam Popularity Filter

Pobierz pliki rozszerzeń Steam Popularity Filter 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

                        An extension that makes browsing Steam's bloated store much easier, by filtering games based on their popularity relative to their price.

In addition, this extension adds a shortcut to steam key activation page, in the user drop-down menu, and lets you activate several keys at the same time, and even lets you extract and activate those keys from a block of text, which allows you yo activate whole bundles in a single copy-paste.                    

Podstawowe informacje o rozszerzeniu

Nazwa Steam Popularity Filter Steam Popularity Filter
ID icflgpakhkkjeaefoedcbdbahmjopbdc
Oficjalny URL https://chromewebstore.google.com/detail/steam-popularity-filter/icflgpakhkkjeaefoedcbdbahmjopbdc
Opis Gives the ability to filter search results based on popularity of games.
Rozmiar pliku 7.11 KB
Liczba instalacji 629
Aktualna Wersja 12
Ostatnia Aktualizacja 2018-06-21
Data Publikacji 2018-06-21
Ocena 5.00/5 Łącznie 6 Oceny
Deweloper Necroblight
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Steam Popularity Filter",
    "version": "12",
    "description": "Gives the ability to filter search results based on popularity of games.",
    "content_scripts": [
        {
            "js": [
                "popularity_filter.js"
            ],
            "css": [
                "popularity_filter.css"
            ],
            "matches": [
                "http:\/\/store.steampowered.com\/search\/*",
                "https:\/\/store.steampowered.com\/search\/*"
            ]
        },
        {
            "js": [
                "batch_activator.js"
            ],
            "matches": [
                "https:\/\/store.steampowered.com\/account\/registerkey"
            ]
        },
        {
            "js": [
                "general.js"
            ],
            "matches": [
                "http:\/\/store.steampowered.com\/*"
            ]
        },
        {
            "js": [
                "general.js"
            ],
            "matches": [
                "https:\/\/store.steampowered.com\/*"
            ]
        }
    ]
}