Minimal YouTube Homepage

Minimal YouTube Homepage

A minimalistic, Google like alternative to YouTube's homepage

Merlin
Additional files are visible only to premium users

manifest.json


{
  "name": "Minimal YouTube Homepage",
  "description": "A minimalistic, Google like alternative to YouTube's homepage",
  "version": "0.1.2",
  "manifest_version": 2,
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "storage",
    "activeTab",
    "webNavigation",
    "tabs",
    "https://www.youtube.com/"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/images/logo16.png",
      "32": "/images/logo32.png",
      "48": "/images/logo48.png",
      "128": "/images/logo128.png"
    }
  },
  "icons": {
    "16": "/images/logo16.png",
    "32": "/images/logo32.png",
    "48": "/images/logo48.png",
    "128": "/images/logo128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}