YouTube Skip intro

YouTube Skip intro

Define the intro time to skip it each time you play a video on YouTube helpful when you watching a series or any many episodes shows

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "YouTube Skip intro",
  "version": "0.6",
  "description": "Define the intro time to skip it each time you play a video on YouTube helpful when you watching a series or any many episodes shows",
  "manifest_version": 2,
  "icons": {
    "16": "skip-intro.png",
    "32": "skip-intro.png",
    "48": "skip-intro.png"
  },
  "browser_action": {
    "default_popup": "skip-intro.view.html",
    "default_icon": "skip-intro.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "*://*/*",
        "<all_urls>"
      ],
      "js": [
        "skip-intro.component.js"
      ]
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "http://youtube.com/*",
    "https://youtube.com/*",
    "http://www.youtube.com/*",
    "https://www.youtube.com/*",
    "webNavigation",
    "background",
    "storage"
  ]
}