Video Scrubber for Instagram
Displays player controls for video content on Instagram
ما هو Video Scrubber for Instagram؟
Video Scrubber for Instagram هو إضافة Chrome تم تطويرها بواسطة https://www.georgemike.com، والميزة الرئيسية لها هي "Displays player controls for video content on Instagram".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Video Scrubber for Instagram
قم بتنزيل ملفات الامتداد Video Scrubber for Instagram بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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
معلومات أساسية عن التمديد
الاسم | Video Scrubber for Instagram |
ID | apondjajmejlodhkaenofcicoiiekghf |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/video-scrubber-for-instag/apondjajmejlodhkaenofcicoiiekghf |
الوصف | Displays player controls for video content on Instagram |
حجم الملف | 256 KB |
عدد التثبيتات | 6,739 |
النسخة الحالية | 5.0.1 |
آخر تحديث | 2023-07-06 |
تاريخ النشر | 2020-05-27 |
تقييم | 4.27/5 مجموع تقييمات 55 |
المطور | https://www.georgemike.com |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
موقع الإضافة | https://www.georgemike.com/ |
عنوان صفحة المساعدة | https://www.georgemike.com/ |
عنوان صفحة سياسة الخصوصية | https://www.georgemike.com/chrome/privacypolicy |
اللغات المدعومة | 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\/*" ] } |