IMDb Plot Keywords Sorter

IMDb Plot Keywords Sorter

Sorts the keywords in IMDb Plot Keywords page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "IMDb Plot Keywords Sorter",
  "version": "1.2",
  "manifest_version": 2,
  "description": "Sorts the keywords in IMDb Plot Keywords page.",
  "icons": {
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://www.imdb.com/title/*/keywords",
        "http://www.imdb.com/title/*/keywords?*",
        "https://www.imdb.com/title/*/keywords",
        "https://www.imdb.com/title/*/keywords?*"
      ],
      "js": [
        "content_script.js"
      ],
      "css": [
        "styles.css"
      ],
      "run_at": "document_end"
    }
  ]
}