spotify remote
get access to the spotify remote service
Co to jest spotify remote?
spotify remote to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „get access to the spotify remote service”.
Pobierz plik CRX rozszerzenia spotify remote
Pobierz pliki rozszerzeń spotify remote w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | boidmjchelicgoeabcpblhboklbillbi |
| Oficjalny URL | https://chromewebstore.google.com/detail/spotify-remote/boidmjchelicgoeabcpblhboklbillbi |
| Opis | get access to the spotify remote service |
| Rozmiar pliku | 34.42 KB |
| Liczba instalacji | 11 |
| Aktualna Wersja | 0.0.5 |
| Ostatnia Aktualizacja | 2015-12-21 |
| Data Publikacji | 2015-12-20 |
| Deweloper | Unknown |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/theyelllowdart/spotifyremote |
| Obsługiwane Języki | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "spotify remote",
"description": "get access to the spotify remote service",
"version": "0.0.5",
"background": {
"scripts": [
"jquery-2.1.4.min.js",
"background.js"
],
"persistent": true
},
"permissions": [
"webRequest",
"webRequestBlocking",
"alarms",
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"browser_action": {
"default_title": "spotify remote"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"content_script.js"
],
"run_at": "document_idle"
}
],
"manifest_version": 2
} | |