SpotifySearch
Spotify search button below each video in YouTube
Vad är SpotifySearch?
SpotifySearch är en Chrome-tillägg utvecklad av sajpo, och dess huvudfunktion är "Spotify search button below each video in YouTube".
Ladda ner SpotifySearch-förlängningens CRX-fil
Ladda ner SpotifySearch-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | |
ID | bkpidekpgpjkekmgijomcokafajpfebi |
Officiell webbadress | https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi |
Beskrivning | Spotify search button below each video in YouTube |
Filstorlek | 34.46 KB |
Antal Installationer | 38 |
Aktuell Version | 1.3 |
Senast Uppdaterad | 2017-10-02 |
Publiceringsdatum | 2017-10-02 |
Betyg | 5.00/5 Totalt 2 Betyg |
Utvecklare | sajpo |
Betalningssätt | free |
Stödda Språk | 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" ] } } |