Video Scrubber for Instagram
Displays player controls for video content on Instagram
Apa itu Video Scrubber for Instagram?
Video Scrubber for Instagram adalah ekstensi Chrome yang dikembangkan oleh https://www.georgemike.com, dan fitur utamanya adalah "Displays player controls for video content on Instagram".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Video Scrubber for Instagram
Unduh file ekstensi Video Scrubber for Instagram 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
Video Scrubber for Instagram adds video controls to your videos on Instagram. There's an optional page-level progress indicator that's rull cute. It's salmon. Bonus Features: - Keyboard shortcuts to: * Play/pause * Jump forward/back 5s * Increase/decrease the volume of videos * Change the playback rate from: .25x - 2x * Play videos in pop-out windows. - Remember and automatically set your last video volume level. It does all these things because it cares about you as as person. About your well-being. Updated: October 2022
Informasi Dasar Ekstensi
Nama | Video Scrubber for Instagram |
ID | apondjajmejlodhkaenofcicoiiekghf |
URL Resmi | https://chromewebstore.google.com/detail/video-scrubber-for-instag/apondjajmejlodhkaenofcicoiiekghf |
Deskripsi | Displays player controls for video content on Instagram |
Ukuran File | 256 KB |
Jumlah Instalasi | 6,739 |
Versi Saat Ini | 5.0.1 |
Terakhir Diperbarui | 2023-07-06 |
Tanggal Publikasi | 2020-05-27 |
Penilaian | 4.27/5 Total 55 Penilaian |
Pengembang | https://www.georgemike.com |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://www.georgemike.com/ |
URL Halaman Bantuan | https://www.georgemike.com/ |
URL Halaman Kebijakan Privasi | https://www.georgemike.com/chrome/privacypolicy |
Bahasa yang Didukung | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "version": "5.0.1", "name": "Video Scrubber for Instagram", "short_name": "Video Scrubber", "description": "Displays player controls for video content on Instagram", "homepage_url": "https:\/\/georgemike.com", "icons": { "128": "images\/icon.128.png" }, "background": { "service_worker": "js\/background.js" }, "options_page": "options.html", "permissions": [ "storage" ], "content_scripts": [ { "matches": [ "https:\/\/instagram.com\/*", "https:\/\/*.instagram.com\/*" ], "js": [ "lib\/progress.js-0.1.0\/progress.min.js", "js\/lib\/FileSaver.v2.0.2.min.js", "js\/ActiveVideoManager.js", "js\/BrowserEnv.js", "js\/FeatureIntroducer.js", "js\/InstaUtils.js", "js\/VideoModifier.js", "js\/config.js", "js\/utils.js", "js\/content.js" ], "css": [ "lib\/progress.js-0.1.0\/progressjs.min.css", "css\/scrub.css" ], "all_frames": true } ], "host_permissions": [ "https:\/\/instagram.com\/*", "https:\/\/*.instagram.com\/*" ] } |