MiniTube

MiniTube

Open YouTube with the click of a button!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MiniTube",
  "short_name": "MiniTube",
  "version": "1.0.0",
  "description": "Open YouTube with the click of a button!",
  "author": "Carter",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "permissions": [
    "tabs"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": "img/icons/icon256.png"
  },
  "icons": {
    "16": "img/icons/icon16.png",
    "48": "img/icons/icon48.png",
    "64": "img/icons/icon64.png",
    "128": "img/icons/icon128.png",
    "256": "img/icons/icon256.png"
  }
}