Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
Vad är Auto Replay YouTube™ Videos?
Auto Replay YouTube™ Videos är en Chrome-tillägg utvecklad av https://opensourceforgeeks.blogspot.com, och dess huvudfunktion är "Auto replay your favorite youtube videos in a loop with zero clicks!".
Tilläggsskärmbilder
Ladda ner Auto Replay YouTube™ Videos-förlängningens CRX-fil
Ladda ner Auto Replay YouTube™ Videos-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
* 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äggande Information om Tillägg
Namn | Auto Replay YouTube™ Videos |
ID | mepicphbpehnpdkmnphaepbglimkeedp |
Officiell webbadress | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
Beskrivning | Auto replay your favorite youtube videos in a loop with zero clicks! |
Filstorlek | 72.76 KB |
Antal Installationer | 682 |
Aktuell Version | 0.0.3 |
Senast Uppdaterad | 2018-02-28 |
Publiceringsdatum | 2018-02-27 |
Betyg | 4.43/5 Totalt 7 Betyg |
Utvecklare | https://opensourceforgeeks.blogspot.com |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } ] } |