Auto Replay YouTube™ Videos
Auto replay your favorite youtube videos in a loop with zero clicks!
Apa itu Auto Replay YouTube™ Videos?
Auto Replay YouTube™ Videos adalah ekstensi Chrome yang dikembangkan oleh https://opensourceforgeeks.blogspot.com, dan fitur utamanya adalah "Auto replay your favorite youtube videos in a loop with zero clicks!".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Auto Replay YouTube™ Videos
Unduh file ekstensi Auto Replay YouTube™ Videos dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
* 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. Informasi Dasar Ekstensi
| Nama | |
| ID | mepicphbpehnpdkmnphaepbglimkeedp |
| URL Resmi | https://chromewebstore.google.com/detail/auto-replay-youtube-video/mepicphbpehnpdkmnphaepbglimkeedp |
| Deskripsi | Auto replay your favorite youtube videos in a loop with zero clicks! |
| Ukuran File | 72.76 KB |
| Jumlah Instalasi | 682 |
| Versi Saat Ini | 0.0.3 |
| Terakhir Diperbarui | 2018-02-28 |
| Tanggal Publikasi | 2018-02-27 |
| Penilaian | 4.43/5 Total 7 Penilaian |
| Pengembang | https://opensourceforgeeks.blogspot.com |
| [email protected] | |
| Tipe Pembayaran | free |
| Bahasa yang Didukung | 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
}
]
} | |