YouTrends

YouTrends

Google Chrome extension for YouTube video discovery

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "YouTrends",
  "version": "1.0.3",
  "description": "Google Chrome extension for YouTube video discovery",
  "browser_action": {
    "default_popup": "src/popup.html",
    "default_title": "YouTrends"
  },
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "permissions": [
    "http://youtube.com/*",
    "https://youtube.com/*",
    "http://*.yahooapis.com/*",
    "https://*.yahooapis.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://youtube.com/*"
      ],
      "css": [
        "src/style.css"
      ],
      "js": [
        "src/jquery-3.1.1.js",
        "src/popup.js"
      ]
    }
  ]
}