SpotifySearch
Spotify search button below each video in YouTube
Qu'est-ce que SpotifySearch ?
SpotifySearch est une extension Chrome développée par sajpo, et sa fonction principale est "Spotify search button below each video in YouTube".
Télécharger le fichier CRX de l'extension SpotifySearch
Téléchargez les fichiers d'extension SpotifySearch au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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...".
Informations de Base sur l'Extension
Nom | |
ID | bkpidekpgpjkekmgijomcokafajpfebi |
URL Officiel | https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi |
Description | Spotify search button below each video in YouTube |
Taille du Fichier | 34.46 KB |
Nombre d'Installations | 38 |
Version Actuelle | 1.3 |
Dernière Mise à Jour | 2017-10-02 |
Date de Publication | 2017-10-02 |
Évaluation | 5.00/5 Total 2 Évaluations |
Développeur | sajpo |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } } |