YouTube Pulse

YouTube Pulse

Like or dislike any second of the video!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Pulse",
  "description": "Like or dislike any second of the video!",
  "default_locale": "en",
  "version": "3.0.6",
  "permissions": [
    "https://ytpulsetest.landb.pro/",
    "https://ytpulse.landb.pro/",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.youtube.com/*",
        "*://m.youtube.com/*"
      ],
      "js": [
        "js/Chart.min.js",
        "content_script.js"
      ],
      "css": [
        "css/desktop.css"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "*://m.youtube.com/*"
      ],
      "css": [
        "css/mobile.css"
      ]
    }
  ],
  "icons": {
    "16": "icon16.png",
    "24": "icon24.png",
    "34": "icon34.png",
    "48": "icon48.png",
    "64": "icon64.png",
    "128": "icon128.png",
    "257": "icon257.png"
  },
  "manifest_version": 2
}