SpotifySearch

Spotify search button below each video in YouTube

What is SpotifySearch?

SpotifySearch is a Chrome extension developed by sajpo, and its main feature is "Spotify search button below each video in YouTube".

Download SpotifySearch Extension CRX File

Download SpotifySearch extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name SpotifySearch SpotifySearch
ID bkpidekpgpjkekmgijomcokafajpfebi
Official URL https://chrome.google.com/webstore/detail/spotifysearch/bkpidekpgpjkekmgijomcokafajpfebi
Description Spotify search button below each video in YouTube
File Size 34.46 KB
Installation Count 38
Current Version 1.3
Last Updated 2017-10-02
Publish Date 2017-10-02
Rating 5.00/5 Total 2 Ratings
Developer sajpo
Payment Type free
Supported Languages 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"
        ]
    }
}