Video Controls for Instagram

Enables video controls on instagram

Was ist Video Controls for Instagram?

Video Controls for Instagram ist eine Chrome-Erweiterung, die von David Ćavar entwickelt wurde, und ihr Hauptmerkmal ist "Enables video controls on instagram".

Erweiterungsscreenshots

screenshot

Video Controls for Instagram-Erweiterungs-CRX-Datei herunterladen

Laden Sie Video Controls for Instagram-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Video Controls for Instagram Video Controls for Instagram
ID fbfifojpjhfeiiefgbddgkabhjhkofkf
Offizielle URL https://chrome.google.com/webstore/detail/video-controls-for-instag/fbfifojpjhfeiiefgbddgkabhjhkofkf
Beschreibung Enables video controls on instagram
Dateigröße 12.9 KB
Installationsanzahl 183
Aktuelle Version 1.3.0
Letztes Update 2019-11-21
Veröffentlichungsdatum 2019-11-21
Bewertung 3.00/5 Insgesamt 2 Bewertungen
Entwickler David Ćavar
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Palethorn/video-controls-for-instagram
Hilfeseite URL https://github.com/Palethorn/video-controls-for-instagram/issues
Unterstützte Sprachen 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
    }
}