YouTube Anti time waste

YouTube Anti time waste

save time from getting distructed by youtube suggestions

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "MYouTube",
  "version": "1.0.0.9",
  "description": "youtube something.",
  "icons": {
    "48": "icons/border-48.png"
  },
  "applications": {
    "gecko": {
      "id": "{c63fff13-92b9-4ff5-95db-7d300a1e9f7f}"
    }
  },
  "options_ui": {
    "page": "settings/options.html"
  },
  "browser_action": {
    "default_icon": "icons/button-32.png",
    "default_title": "MYouTube",
    "browser_style": true
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.youtube.com/*"
      ],
      "js": [
        "MYouTube.js"
      ],
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "<all_urls>",
    "webRequest",
    "storage"
  ]
}