Game Deals for YouTube

Game Deals for YouTube

How often do you watch a gaming video on YouTube with an interesting game, and wonder how expensive is it or where can you find it for the best price? This extension helps you find the best deal right on the watch page.

Additional files are visible only to premium users

manifest.json


{
  "name": "Game Deals for YouTube",
  "version": "1.0.1",
  "description": "Add deals info from IsThereAnyDeal to YouTube",
  "icons": {
    "128": "img/icon128.png"
  },
  "manifest_version": 2,
  "permissions": [],
  "web_accessible_resources": [
    "img/*.png",
    "img/*.svg",
    "css/*.css"
  ],
  "homepage_url": "https://github.com/tfedor/deals-youtube",
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "js/lib/DOMPurify/purify.js",
        "js/config.js",
        "js/core.js",
        "js/content/content.js"
      ],
      "css": [
        "css/styles.css"
      ]
    }
  ],
  "background": {
    "scripts": [
      "js/lib/DOMPurify/purify.js",
      "js/config.js",
      "js/core.js",
      "js/background/background.js"
    ]
  }
}