Video Controls for Instagram

Enables video controls on instagram

What is Video Controls for Instagram?

Video Controls for Instagram is a Chrome extension developed by David Ćavar, and its main feature is "Enables video controls on instagram".

Extension Screenshots

screenshot

Download Video Controls for Instagram Extension CRX File

Download Video Controls for Instagram extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Enables controls for videos inside your Instagram feed (seek, full screen, volume change, play, pause)
Defaults video volume to 50%, and saves the setting if changed                    

Extension Basic Information

Name Video Controls for Instagram Video Controls for Instagram
ID fbfifojpjhfeiiefgbddgkabhjhkofkf
Official URL https://chrome.google.com/webstore/detail/video-controls-for-instag/fbfifojpjhfeiiefgbddgkabhjhkofkf
Description Enables video controls on instagram
File Size 12.9 KB
Installation Count 183
Current Version 1.3.0
Last Updated 2019-11-21
Publish Date 2019-11-21
Rating 3.00/5 Total 2 Ratings
Developer David Ćavar
Email [email protected]
Payment Type free
Extension Website https://github.com/Palethorn/video-controls-for-instagram
Help Page URL https://github.com/Palethorn/video-controls-for-instagram/issues
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Controls for Instagram",
    "version": "1.3.0",
    "manifest_version": 2,
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "description": "Enables video controls on instagram",
    "icons": {
        "128": "icon128.png"
    },
    "browser_action": {
        "default_icon": "icon128.png",
        "default_popup": "menu.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/www.instagram.com\/*",
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    }
}