Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
Wat is Auto Replay YouTube™ Videos?
Auto Replay YouTube™ Videos is een Chrome-extensie ontwikkeld door https://opensourceforgeeks.blogspot.com, en de belangrijkste functie is "Auto replay your favorite youtube videos in a loop with zero clicks!".
Extensie Screenshots
Download het CRX-bestand van de extensie Auto Replay YouTube™ Videos
Download Auto Replay YouTube™ Videos-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
* 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. Basisinformatie over de Extensie
| Naam | |
| ID | mepicphbpehnpdkmnphaepbglimkeedp |
| Officiële URL | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
| Beschrijving | Auto replay your favorite youtube videos in a loop with zero clicks! |
| Bestandsgrootte | 72.76 KB |
| Aantal Installaties | 682 |
| Huidige Versie | 0.0.3 |
| Laatst Bijgewerkt | 2018-02-28 |
| Publicatiedatum | 2018-02-27 |
| Beoordeling | 4.43/5 Totaal 7 Beoordelingen |
| Ontwikkelaar | https://opensourceforgeeks.blogspot.com |
| [email protected] | |
| Betalingswijze | free |
| Ondersteunde Talen | 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
}
]
} | |