SpotifySearch

Spotify search button below each video in YouTube

Cos'è SpotifySearch?

SpotifySearch è un'estensione di Chrome sviluppata da sajpo, e la sua funzione principale è "Spotify search button below each video in YouTube".

Scarica il file CRX dell'estensione SpotifySearch

Scarica i file di estensione SpotifySearch in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Open any music video in YouTube and click on SpotifySearch icon below the player to search the same song in Spotify! You can also use the search tool from a context menu - just select any text, right-click on it and choose: "Search...".                    

Informazioni di Base sull'Estensione

Nome SpotifySearch SpotifySearch
ID bkpidekpgpjkekmgijomcokafajpfebi
URL Ufficiale https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi
Descrizione Spotify search button below each video in YouTube
Dimensione del File 34.46 KB
Conteggio Installazioni 38
Versione Corrente 1.3
Ultimo Aggiornamento 2017-10-02
Data di Pubblicazione 2017-10-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore sajpo
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "SpotifySearch",
    "description": "Spotify search button below each video in YouTube",
    "version": "1.3",
    "short_name": "SpotifySearch",
    "author": "Sajpo",
    "browser_action": {
        "default_icon": {
            "16": "icon.png"
        }
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "autorun.js"
            ]
        }
    ],
    "icons": {
        "128": "icon.png"
    },
    "background": {
        "scripts": [
            "contextMenu.js"
        ]
    }
}