YouTube logo link

YouTube logo link

This extension lets you change the link of the YouTube logo.

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 logo link",
  "description": "This extension lets you change the link of the YouTube logo.",
  "version": "1.0.0",
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "options_page": "options.html",
  "options_ui": {
    "page": "options.html",
    "open_in_tab": false
  },
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "permissions": [
    "webNavigation",
    "tabs",
    "storage",
    "http://*.youtube.com/",
    "https://*.youtube.com/"
  ]
}