SpotifYoutube

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

Τι είναι το SpotifYoutube;

Το SpotifYoutube είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον mariannelinharesm, και η κύρια λειτουργία του είναι "Adds a button in Youtube that creates a new tab with Spotify.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης SpotifYoutube

Λήψη αρχείων επέκτασης 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
Ηλεκτρονικό ταχυδρομείο [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"
    ]
}