SpotifYoutube

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

SpotifYoutube क्या है?

SpotifYoutube mariannelinharesm द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button in Youtube that creates a new tab with Spotify."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SpotifYoutube एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
ईमेल [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"
    ]
}