Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
Hvad er Auto Replay YouTube™ Videos?
Auto Replay YouTube™ Videos er en Chrome-udvidelse udviklet af https://opensourceforgeeks.blogspot.com, og dens hovedfunktion er "Auto replay your favorite youtube videos in a loop with zero clicks!".
Udvidelsesskærmbilleder
Download Auto Replay YouTube™ Videos-udvidelses-CRX-fil
Download Auto Replay YouTube™ Videos-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
* Replay your favorite youtube videos automatically with 0 clicks. * Optional settings to turn off the auto looping behavior in a single click. * Easy to use extension with visibility limited to youtube only. * Auto play setting is changed based on looping status.
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | mepicphbpehnpdkmnphaepbglimkeedp |
Officiel URL | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
Beskrivelse | Auto replay your favorite youtube videos in a loop with zero clicks! |
Filstørrelse | 72.76 KB |
Antal Installationer | 682 |
Nuværende Version | 0.0.3 |
Senest Opdateret | 2018-02-28 |
Udgivelsesdato | 2018-02-27 |
Bedømmelse | 4.43/5 Samlet 7 Bedømmelser |
Udvikler | https://opensourceforgeeks.blogspot.com |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Auto Replay YouTube\u2122 Videos", "version": "0.0.3", "manifest_version": 2, "description": "Auto replay your favorite youtube videos in a loop with zero clicks!", "icons": { "48": "icon-48.png", "128": "icon-128.png" }, "page_action": { "default_icon": "icon-19.png", "default_title": "Toggle YouTube replay" }, "background": { "scripts": [ "jquery-1.7.1.min.js", "background.js" ], "persistent": false }, "permissions": [ "declarativeContent", "activeTab", "notifications" ], "content_scripts": [ { "matches": [ "*:\/\/*.youtube.com\/*" ], "js": [ "jquery-1.7.1.min.js", "waitForKeyElements.js", "contentscript.js" ], "run_at": "document_end", "all_frames": true } ] } |