Rottentomatoes information in Trakt.tv

Rottentomatoes information in Trakt.tv

This extension shows Rotten Tomatoes Fresh/Rotten score in trakt.tv

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Rottentomatoes information in Trakt.tv",
  "short_name": "Traktatoes",
  "version": "2.0.1",
  "description": "This extension shows Rotten Tomatoes Fresh/Rotten score in trakt.tv",
  "icons": {
    "128": "icon_128.png"
  },
  "permissions": [
    "https://www.rottentomatoes.com/*",
    "http://www.omdbapi.com/*",
    "http://www.omdbapi.com/?tomatoes=true&i=tt*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://trakt.tv/*",
        "http://trakt.tv/*"
      ],
      "css": [
        "rottenTomatoesStyle.css"
      ],
      "js": [
        "script.js",
        "deps/jquery-3.1.1.min.js",
        "deps/bootstrap.min.js",
        "deps/handlebars.min-latest.js",
        "movie_score.template.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "manifest_version": 2
}