SpotifySearch
Spotify search button below each video in YouTube
什麼是SpotifySearch?
SpotifySearch是由sajpo開發的Chrome擴展程式,該擴展的主要功能是“Spotify search button below each video in YouTube”。
下載SpotifySearch擴展crx文件
下載SpotifySearch擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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...".
擴展基本資訊
名稱 | |
ID | bkpidekpgpjkekmgijomcokafajpfebi |
官方網址 | https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi |
簡介 | Spotify search button below each video in YouTube |
檔案大小 | 34.46 KB |
安裝次數 | 38 |
目前版本 | 1.3 |
更新時間 | 2017-10-02 |
上架時間 | 2017-10-02 |
評分 | 5.00/5 共 2 次評分 |
開發者 | sajpo |
付費類型 | free |
支援的語言 | 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" ] } } |