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"
        ]
    }
}