SpotifYoutube
Adds a button in Youtube that creates a new tab with Spotify.
Was ist SpotifYoutube?
SpotifYoutube ist eine Chrome-Erweiterung, die von mariannelinharesm entwickelt wurde, und ihr Hauptmerkmal ist "Adds a button in Youtube that creates a new tab with Spotify.".
Erweiterungsscreenshots
SpotifYoutube-Erweiterungs-CRX-Datei herunterladen
Laden Sie SpotifYoutube-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | ankphgpmnicdkehhmnklhlodkfkecjbh |
| Offizielle URL | https://chrome.google.com/webstore/detail/spotifyoutube/ankphgpmnicdkehhmnklhlodkfkecjbh |
| Beschreibung | Adds a button in Youtube that creates a new tab with Spotify. |
| Dateigröße | 45.4 KB |
| Installationsanzahl | 213 |
| Aktuelle Version | 1.0.1 |
| Letztes Update | 2016-09-16 |
| Veröffentlichungsdatum | 2016-09-16 |
| Bewertung | 4.57/5 Insgesamt 7 Bewertungen |
| Entwickler | mariannelinharesm |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/mari-linhares/spotifyoutube/ |
| Hilfeseite URL | https://github.com/mari-linhares/spotifyoutube/issues |
| Unterstützte Sprachen | 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"
]
} | |