Steam Popularity Filter

Steam Popularity Filter

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

Merlin
Additional files are visible only to premium users

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/*"
      ]
    }
  ]
}