SpotifYoutube
Adds a button in Youtube that creates a new tab with Spotify.
Qu'est-ce que SpotifYoutube ?
SpotifYoutube est une extension Chrome développée par mariannelinharesm, et sa fonction principale est "Adds a button in Youtube that creates a new tab with Spotify.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension SpotifYoutube
Téléchargez les fichiers d'extension SpotifYoutube au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | ankphgpmnicdkehhmnklhlodkfkecjbh |
URL Officiel | https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh |
Description | Adds a button in Youtube that creates a new tab with Spotify. |
Taille du Fichier | 45.4 KB |
Nombre d'Installations | 213 |
Version Actuelle | 1.0.1 |
Dernière Mise à Jour | 2016-09-16 |
Date de Publication | 2016-09-16 |
Évaluation | 4.57/5 Total 7 Évaluations |
Développeur | mariannelinharesm |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/mari-linhares/spotifyoutube/ |
URL de la Page d'Aide | https://github.com/mari-linhares/spotifyoutube/issues |
Langues Prises en Charge | 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" ] } |