Spotify Web Player

Unofficial Spotify Web Player Search Extension.

O que é Spotify Web Player?

Spotify Web Player é uma extensão do Chrome desenvolvida por Shivam rana, e sua principal característica é "Unofficial Spotify Web Player Search Extension.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Spotify Web Player

Baixe arquivos de extensão Spotify Web Player no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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..                    

Informações Básicas da Extensão

Nome Spotify Web Player Spotify Web Player
ID gphjkkbkmaiccfnhcoiibpkfpmpnkfeb
URL Oficial https://chromewebstore.google.com/detail/spotify-web-player/gphjkkbkmaiccfnhcoiibpkfpmpnkfeb
Descrição Unofficial Spotify Web Player Search Extension.
Tamanho do Arquivo 22.69 KB
Contagem de Instalações 10,126
Versão Atual 1.5229
Última Atualização 2024-02-28
Data de Publicação 2022-05-25
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Shivam rana
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://chromeapps.site/privacypolicy.html
Idiomas Suportados 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"
    }
}