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

扩展基本信息

名称 SpotifySearch SpotifySearch
ID bkpidekpgpjkekmgijomcokafajpfebi
官方URL 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"
        ]
    }
}