Real Listen On Repeat
Repeat youtube videos
Co to jest Real Listen On Repeat?
Real Listen On Repeat to rozszerzenie Chrome opracowane przez https://miltonlaufer.com.ar, a jego główną funkcją jest „Repeat youtube videos”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Real Listen On Repeat
Pobierz pliki rozszerzeń Real Listen On Repeat 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
A simple button to listen Youtube videos on repeat
Podstawowe informacje o rozszerzeniu
Nazwa | Real Listen On Repeat |
ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
Oficjalny URL | https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc |
Opis | Repeat youtube videos |
Rozmiar pliku | 8.98 KB |
Liczba instalacji | 89 |
Aktualna Wersja | 0.0.5.1 |
Ostatnia Aktualizacja | 2017-12-08 |
Data Publikacji | 2017-12-07 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | https://miltonlaufer.com.ar |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Real Listen On Repeat", "short_name": "RealListenOnRepeat", "description": "Repeat youtube videos", "version": "0.0.5.1", "manifest_version": 2, "author": "@onwhatthereis", "permissions": [ "tabs" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "browser_action": { "name": "Click to set on\/off the Youtube Repeat mode" }, "icons": { "16": "icon16.png", "32": "icon32.png", "64": "icon64.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/www.youtube.com\/*", "https:\/\/www.youtube.com\/*" ], "run_at": "document_start", "js": [ "myscript.js" ] } ] } |