Embiggen Spotify Video

Embiggen Spotify Video

Expand the Video on Spotify Video Podcasts to full page and skip using arrow keys

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Embiggen Spotify Video",
  "description": "Expand the Video on Spotify Video Podcasts to full page and skip using arrow keys",
  "version": "1.5.5",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "https://open.spotify.com/*"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  },
  "content_scripts": [
    {
      "js": [
        "contentScript.js"
      ],
      "matches": [
        "*://open.spotify.com/*"
      ]
    }
  ],
  "page_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "images/full-screen16.png",
      "32": "images/full-screen32.png",
      "48": "images/full-screen32.png",
      "128": "images/full-screen128.png"
    }
  },
  "icons": {
    "16": "images/full-screen16.png",
    "32": "images/full-screen32.png",
    "48": "images/full-screen32.png",
    "128": "images/full-screen128.png"
  },
  "manifest_version": 2
}