Video Controls for Instagram
Enables video controls on instagram
Qu'est-ce que Video Controls for Instagram ?
Video Controls for Instagram est une extension Chrome développée par David Ćavar, et sa fonction principale est "Enables video controls on instagram".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Video Controls for Instagram
Téléchargez les fichiers d'extension Video Controls for Instagram au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | fbfifojpjhfeiiefgbddgkabhjhkofkf |
URL Officiel | https://chrome.google.com/webstore/detail/video-controls-for-instag/fbfifojpjhfeiiefgbddgkabhjhkofkf |
Description | Enables video controls on instagram |
Taille du Fichier | 12.9 KB |
Nombre d'Installations | 183 |
Version Actuelle | 1.3.0 |
Dernière Mise à Jour | 2019-11-21 |
Date de Publication | 2019-11-21 |
Évaluation | 3.00/5 Total 2 Évaluations |
Développeur | David Ćavar |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/Palethorn/video-controls-for-instagram |
URL de la Page d'Aide | https://github.com/Palethorn/video-controls-for-instagram/issues |
Langues Prises en Charge | 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 } } |