SpotifySearch

Spotify search button below each video in YouTube

Hvad er SpotifySearch?

SpotifySearch er en Chrome-udvidelse udviklet af sajpo, og dens hovedfunktion er "Spotify search button below each video in YouTube".

Download SpotifySearch-udvidelses-CRX-fil

Download SpotifySearch-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn SpotifySearch SpotifySearch
ID bkpidekpgpjkekmgijomcokafajpfebi
Officiel URL https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi
Beskrivelse Spotify search button below each video in YouTube
Filstørrelse 34.46 KB
Antal Installationer 38
Nuværende Version 1.3
Senest Opdateret 2017-10-02
Udgivelsesdato 2017-10-02
Bedømmelse 5.00/5 Samlet 2 Bedømmelser
Udvikler sajpo
Betalingsmetode free
Understøttede Sprog 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"
        ]
    }
}