Youtube Button

Youtube Button

A simple button that takes you straight to youtube. I created it because I needed it, Because typing can take too long.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Youtube Button",
  "version": "1.0",
  "description": "A simple button that takes you straight to youtube. I created it because I needed it, Because typing can take too long.",
  "author": "Kassius Barker, www.KassBarker.com",
  "browser_action": {
    "default_icon": "icon.png"
  },
  "icons": {
    "16": "icon16.png",
    "32": "icon32.png",
    "48": "icon48.png",
    "64": "icon48.png",
    "128": "icon128.png"
  },
  "background": {
    "scripts": [
      "goto.js"
    ],
    "persistent": false
  }
}