SpotifySearch
Spotify search button below each video in YouTube
Wat is SpotifySearch?
SpotifySearch is een Chrome-extensie ontwikkeld door sajpo, en de belangrijkste functie is "Spotify search button below each video in YouTube".
Download het CRX-bestand van de extensie SpotifySearch
Download SpotifySearch-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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...".
Basisinformatie over de Extensie
Naam | |
ID | bkpidekpgpjkekmgijomcokafajpfebi |
Officiële URL | https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi |
Beschrijving | Spotify search button below each video in YouTube |
Bestandsgrootte | 34.46 KB |
Aantal Installaties | 38 |
Huidige Versie | 1.3 |
Laatst Bijgewerkt | 2017-10-02 |
Publicatiedatum | 2017-10-02 |
Beoordeling | 5.00/5 Totaal 2 Beoordelingen |
Ontwikkelaar | sajpo |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } } |