Video Scrubber for Instagram

Displays player controls for video content on Instagram

Video Scrubber for Instagram là gì?

Video Scrubber for Instagram là một tiện ích mở rộng Chrome được phát triển bởi https://www.georgemike.com, và tính năng chính của nó là "Displays player controls for video content on Instagram".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Scrubber for Instagram

Tải xuống các tệp mở rộng Video Scrubber for Instagram dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Scrubber for Instagram Video Scrubber for Instagram
ID apondjajmejlodhkaenofcicoiiekghf
URL Chính Thức https://chromewebstore.google.com/detail/video-scrubber-for-instag/apondjajmejlodhkaenofcicoiiekghf
Mô tả Displays player controls for video content on Instagram
Kích Thước Tệp 256 KB
Số Lần Cài Đặt 6,739
Phiên Bản Hiện Tại 5.0.1
Cập Nhật Lần Cuối 2023-07-06
Ngày Phát Hành 2020-05-27
Đánh Giá 4.27/5 Tổng số 55 Đánh Giá
Nhà Phát Triển https://www.georgemike.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.georgemike.com/
URL Trang Trợ Giúp https://www.georgemike.com/
URL Trang Chính Sách Bảo Mật https://www.georgemike.com/chrome/privacypolicy
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}