Simple Video Skipper

Simple Video Skipper

Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Simple Video Skipper",
  "description": "Click Ctrl+Left to skip forward 5s, Ctrl+Right to skip 5s. Add Shift to increase to 10s.",
  "version": "1.2",
  "manifest_version": 2,
  "permissions": [
    "activeTab"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": true
  },
  "commands": {
    "skip-forward-5": {
      "suggested_key": {
        "default": "Ctrl+Left"
      },
      "description": "skip forward 5s"
    },
    "skip-5": {
      "suggested_key": {
        "default": "Ctrl+Right"
      },
      "description": "skip forward 5s"
    },
    "skip-forward-10": {
      "suggested_key": {
        "default": "Ctrl+Shift+Left"
      },
      "description": "skip forward 10s"
    },
    "skip-10": {
      "suggested_key": {
        "default": "Ctrl+Shift+Right"
      },
      "description": "skip forward 10s"
    }
  }
}