loop
looks for videos and allows you to make loops
Apa itu loop?
loop adalah ekstensi Chrome yang dikembangkan oleh Evaw, dan fitur utamanya adalah "looks for videos and allows you to make loops".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi loop
Unduh file ekstensi loop 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
An Extension to loop video. Use cases: * replay a youtube song automatically. * replay a segment of a video you're watching over an over for analysis
Informasi Dasar Ekstensi
Nama | loop |
ID | mpjplegmigckokmkmnbbfgjpepocpngj |
URL Resmi | https://chromewebstore.google.com/detail/loop/mpjplegmigckokmkmnbbfgjpepocpngj |
Deskripsi | looks for videos and allows you to make loops |
Ukuran File | 7.38 MB |
Jumlah Instalasi | 905 |
Versi Saat Ini | 1.0.0 |
Terakhir Diperbarui | 2017-12-01 |
Tanggal Publikasi | 2017-11-30 |
Penilaian | 4.00/5 Total 4 Penilaian |
Pengembang | Evaw |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "loop", "version": "1.0.0", "icons": { "48": "img\/icons\/icon48.png", "128": "img\/icons\/icon128.png", "300": "img\/icons\/icon300.png" }, "description": "looks for videos and allows you to make loops", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "js\/content-script.js" ], "all_frames": true } ], "background": { "scripts": [ "js\/popup.js" ] }, "options_ui": { "page": "html\/options.html", "chrome_style": true }, "browser_action": { "default_icon": "img\/icons\/icon128.png", "__default_popup": "html\/popup.html" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage" ] } |