Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
Was ist Auto Replay YouTube™ Videos?
Auto Replay YouTube™ Videos ist eine Chrome-Erweiterung, die von https://opensourceforgeeks.blogspot.com entwickelt wurde, und ihr Hauptmerkmal ist "Auto replay your favorite youtube videos in a loop with zero clicks!".
Erweiterungsscreenshots
Auto Replay YouTube™ Videos-Erweiterungs-CRX-Datei herunterladen
Laden Sie Auto Replay YouTube™ Videos-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
* 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.
Grundlegende Informationen zur Erweiterung
Name | Auto Replay YouTube™ Videos |
ID | mepicphbpehnpdkmnphaepbglimkeedp |
Offizielle URL | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
Beschreibung | Auto replay your favorite youtube videos in a loop with zero clicks! |
Dateigröße | 72.76 KB |
Installationsanzahl | 682 |
Aktuelle Version | 0.0.3 |
Letztes Update | 2018-02-28 |
Veröffentlichungsdatum | 2018-02-27 |
Bewertung | 4.43/5 Insgesamt 7 Bewertungen |
Entwickler | https://opensourceforgeeks.blogspot.com |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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 } ] } |