Spotify Web Player

Unofficial Spotify Web Player Search Extension.

什麼是Spotify Web Player?

Spotify Web Player是由Shivam rana開發的Chrome擴展程式,該擴展的主要功能是“Unofficial Spotify Web Player Search Extension.”。

擴展截圖

screenshot

下載Spotify Web Player擴展crx文件

下載Spotify Web Player擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Spotify Web Player Extension. Search music from Spotify Web app using Google custom search api.
This is a Spotify web  player search that allows the user seamlessly 
 search play/pause/like/repeat or jump to previous or next track while surfing the web by navigating to the Spotify player user interface. 

How to Use Spotify Web Player Search pro
1.First download the Spotify Player app.
2. Now you can click extension icon to launch search or use omnibox and type "spot" enter tab key and type to search the track of your choice.
3. When you find the track , music or song you were looking for just click the link.
4. If you are already logged into Spotify you will be able to play it asap else you will be asked to log in.
5. Enjoy Searching Spotify.

To provide this functionality extension takes over you default search for seamless experience..                    

擴展基本資訊

名稱 Spotify Web Player Spotify Web Player
ID gphjkkbkmaiccfnhcoiibpkfpmpnkfeb
官方網址 https://chromewebstore.google.com/detail/spotify-web-player/gphjkkbkmaiccfnhcoiibpkfpmpnkfeb
簡介 Unofficial Spotify Web Player Search Extension.
檔案大小 22.69 KB
安裝次數 10,126
目前版本 1.5229
更新時間 2024-02-28
上架時間 2022-05-25
評分 5.00/5 共 3 次評分
開發者 Shivam rana
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://chromeapps.site/privacypolicy.html
支援的語言 en
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": [
                ""
            ],
            "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"
    }
}