Game Deals for YouTube

Game Deals for YouTube

Add deals info from IsThereAnyDeal to YouTube

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "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"
    ]
  }
}