Nyan Cat YouTube Enhancement

Nyan Cat YouTube Enhancement

Adds a running Nyan Cat and Rainbow Streak to YouTube video progress bars.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Nyan YouTube Enhancement",
  "version": "3.0",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "description": "Replaces the YouTube scrubber and progress bar with Nyan Cat and its Rainbow Streak.",
  "homepage_url": "https://github.com/fzramos",
  "icons": {
    "48": "icons/nyan_cat_48.png",
    "96": "icons/nyan_cat_96.png"
  },
  "permissions": [
    "tabs"
  ],
  "browser_action": {
    "default_icon": "icons/nyan_cat_48.png",
    "default_title": "Nyan YT Enhancer",
    "default_popup": "popup/nyan_off.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "css": [
        "content_scripts/mystyles.css"
      ]
    }
  ],
  "web_accessible_resources": [
    "popup/images/0.png",
    "popup/images/1.png",
    "popup/images/2.png",
    "popup/images/3.png",
    "popup/images/4.png",
    "popup/images/5.png",
    "popup/images/background_nyan.gif"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{c3348e96-6d84-47dc-8252-4b8493299efc}"
    }
  }
}