TraktToKodi

TraktToKodi

Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "TraktToKodi",
  "description": "Open/Play content with a compatible Kodi add-on from trakt.tv in your browser.",
  "version": "0.2.0.0",
  "default_locale": "en",
  "icons": {
    "16": "/images/icon_16.png",
    "48": "/images/icon_48.png",
    "128": "/images/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "19": "/images/icon_19.png",
      "38": "/images/icon_38.png"
    },
    "default_popup": "/html/settings.html"
  },
  "options_ui": {
    "page": "/html/settings.html",
    "chrome_style": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.trakt.tv/*"
      ],
      "css": [
        "/css/trakt.css"
      ],
      "js": [
        "/js/content_script.js"
      ],
      "all_frames": true
    }
  ],
  "background": {
    "matches": [
      "*://*.trakt.tv/*"
    ],
    "scripts": [
      "/js/background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "background",
    "*://*.trakt.tv/*",
    "tabs",
    "webNavigation",
    "activeTab",
    "storage"
  ],
  "options_page": "/html/settings.html"
}