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".

Снимки экрана расширения

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Скачать файл CRX расширения Video Scrubber for Instagram

Скачайте файлы расширений Video Scrubber for Instagram в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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
Электронная почта support@georgemike.com
Тип оплаты 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\/*"
    ]
}