Aereo super controls

Aereo super controls

Add keyboard commands to jump forward and backward to help with skiping over ads

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Aereo super controls",
  "short_name": "Aereo remote",
  "version": "2.0",
  "manifest_version": 2,
  "description": "Add keyboard commands to jump forward and backward to help with skiping over ads",
  "icons": {
    "16": "icon16.png",
    "48": "icon48.png",
    "128": "icon128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "options.html"
  },
  "permissions": [
    "storage",
    "tabs",
    "https://*.aereo.com/*"
  ],
  "background": {
    "scripts": [
      "bkgScript.js"
    ]
  },
  "commands": {
    "forward30": {
      "suggested_key": {
        "default": "Alt+J"
      },
      "description": "alt-j Jump forward 30 secs"
    },
    "forward60": {
      "suggested_key": {
        "default": "Alt+K"
      },
      "description": "alt-k Jump forward 60 secs"
    },
    "back15": {
      "suggested_key": {
        "default": "Alt+S"
      },
      "description": "alt-s Jump back 15 secs"
    },
    "back30": {
      "suggested_key": {
        "default": "Alt+A"
      },
      "description": "alt-a Jump back 30 secs"
    }
  }
}