Video Scrubber for Instagram

Displays player controls for video content on Instagram

Video Scrubber for Instagram란 무엇입니까?

Video Scrubber for Instagram은(는) https://www.georgemike.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Displays player controls for video content on Instagram"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Video Scrubber for Instagram 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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/
도움말 페이지 URL https://www.georgemike.com/
개인정보 보호 정책 페이지 URL 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\/*"
    ]
}