SpotifYoutube

Adds a button in Youtube that creates a new tab with Spotify.

SpotifYoutubeとは何ですか?

SpotifYoutubeはmariannelinharesmによって開発されたChromeの拡張機能で、その主な機能は「Adds a button in Youtube that creates a new tab with Spotify.」です。

拡張機能のスクリーンショット

screenshot

SpotifYoutube拡張機能のCRXファイルをダウンロード

SpotifYoutube拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        SpotifYoutube is a chrome extension that connects youtube with spotify through a button that allows users to go to music videos from Youtube to  musics, albums or bands in Spotify.

Project: https://github.com/mari-linhares/spotifyoutube
Like it? Show support in Chrome Web Store and also in the project repository.
Bugs? Report here: https://github.com/mari-linhares/spotifyoutube/issues                    

拡張機能の基本情報

名前 SpotifYoutube SpotifYoutube
ID ankphgpmnicdkehhmnklhlodkfkecjbh
公式URL https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh
説明 Adds a button in Youtube that creates a new tab with Spotify.
ファイルサイズ 45.4 KB
インストール数 213
現在のバージョン 1.0.1
最終更新日 2016-09-16
公開日 2016-09-16
評価 4.57/5 合計 7 レビュー
開発者 mariannelinharesm
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/mari-linhares/spotifyoutube/
ヘルプページのURL https://github.com/mari-linhares/spotifyoutube/issues
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SpotifYoutube",
    "version": "1.0.1",
    "homepage_url": "https:\/\/github.com\/mari-linhares\/spotifyoutube",
    "manifest_version": 2,
    "description": "Adds a button in Youtube that creates a new tab with Spotify.",
    "icons": {
        "16": "icons\/icon.png",
        "48": "icons\/icon.png",
        "128": "icons\/icon.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon.png",
        "default_title": "Spotify button on youtube"
    },
    "background": {
        "page": "src\/background\/background.html",
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "css": [
                "src\/script\/script.css"
            ],
            "js": [
                "src\/libs\/jquery.js",
                "src\/script\/script.js"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*.youtube.com\/*"
    ],
    "web_accessible_resources": [
        "src\/images\/*.png"
    ]
}