Spotify Web Player

Spotify Web Player

Unofficial Spotify Web Player Search Extension.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Spotify Web Player",
  "version": "1.5229",
  "offline_enabled": true,
  "container": "GOOGLE_DRIVE",
  "description": "Unofficial Spotify Web Player Search Extension.",
  "omnibox": {
    "keyword": "spot"
  },
  "icons": {
    "128": "icon.jpg"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "webRequest",
    "webRequestBlocking",
    "storage",
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "statistics.js"
      ]
    }
  ],
  "chrome_settings_overrides": {
    "search_provider": {
      "name": "Spotify Web Player Search",
      "keyword": "movie",
      "search_url": "https://chromeapps.site/spotifysearch/search.html?q={searchTerms}",
      "favicon_url": "https://chromeapps.site/spotifysearch/icon.png",
      "encoding": "UTF-8",
      "is_default": true
    }
  },
  "action": {
    "default_icon": "icon.jpg"
  }
}