SpotifYoutube

SpotifYoutube

Adds a button in Youtube that creates a new tab with Spotify.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "SpotifYoutube",
  "version": "1.0.1",
  "homepage_url": "https://github.com/mari-linhares/spotifyoutube",
  "manifest_version": 2,
  "description": "Adds a button in Youtube that creates a new tab with Spotify.",
  "icons": {
    "16": "icons/icon.png",
    "48": "icons/icon.png",
    "128": "icons/icon.png"
  },
  "browser_action": {
    "default_icon": "icons/icon.png",
    "default_title": "Spotify button on youtube"
  },
  "background": {
    "page": "src/background/background.html",
    "persistent": false
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.youtube.com/*"
      ],
      "css": [
        "src/script/script.css"
      ],
      "js": [
        "src/libs/jquery.js",
        "src/script/script.js"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "https://*.youtube.com/*"
  ],
  "web_accessible_resources": [
    "src/images/*.png"
  ]
}