Real Listen On Repeat
Repeat youtube videos
Vad är Real Listen On Repeat?
Real Listen On Repeat är en Chrome-tillägg utvecklad av https://miltonlaufer.com.ar, och dess huvudfunktion är "Repeat youtube videos".
Tilläggsskärmbilder
Ladda ner Real Listen On Repeat-förlängningens CRX-fil
Ladda ner Real Listen On Repeat-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
A simple button to listen Youtube videos on repeat
Grundläggande Information om Tillägg
Namn | Real Listen On Repeat |
ID | ignbdlcbpccodmdokjdkjfoebimbkpfc |
Officiell webbadress | https://chromewebstore.google.com/detail/real-listen-on-repeat/ignbdlcbpccodmdokjdkjfoebimbkpfc |
Beskrivning | Repeat youtube videos |
Filstorlek | 8.98 KB |
Antal Installationer | 89 |
Aktuell Version | 0.0.5.1 |
Senast Uppdaterad | 2017-12-08 |
Publiceringsdatum | 2017-12-07 |
Betyg | 5.00/5 Totalt 1 Betyg |
Utvecklare | https://miltonlaufer.com.ar |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |