SpotifYoutube

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

SpotifYoutube là gì?

SpotifYoutube là một tiện ích mở rộng Chrome được phát triển bởi mariannelinharesm, và tính năng chính của nó là "Adds a button in Youtube that creates a new tab with Spotify.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng SpotifYoutube

Tải xuống các tệp mở rộng SpotifYoutube dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên SpotifYoutube SpotifYoutube
ID ankphgpmnicdkehhmnklhlodkfkecjbh
URL Chính Thức https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh
Mô tả Adds a button in Youtube that creates a new tab with Spotify.
Kích Thước Tệp 45.4 KB
Số Lần Cài Đặt 213
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2016-09-16
Ngày Phát Hành 2016-09-16
Đánh Giá 4.57/5 Tổng số 7 Đánh Giá
Nhà Phát Triển mariannelinharesm
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mari-linhares/spotifyoutube/
URL Trang Trợ Giúp https://github.com/mari-linhares/spotifyoutube/issues
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}