Video Controls for Instagram

Enables video controls on instagram

什么是Video Controls for Instagram?

Video Controls for Instagram是由David Ćavar开发的Chrome扩展程序,该扩展的主要功能是“Enables video controls on instagram”。

扩展截图

screenshot

下载Video Controls for Instagram扩展crx文件

下载Video Controls for Instagram扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Video Controls for Instagram Video Controls for Instagram
ID fbfifojpjhfeiiefgbddgkabhjhkofkf
官方URL https://chrome.google.com/webstore/detail/video-controls-for-instag/fbfifojpjhfeiiefgbddgkabhjhkofkf
简介 Enables video controls on instagram
文件大小 12.9 KB
安装次数 183
当前版本 1.3.0
更新时间 2019-11-21
上架时间 2019-11-21
评分 3.00/5 共2次评分
开发者 David Ćavar
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Palethorn/video-controls-for-instagram
帮助页面URL https://github.com/Palethorn/video-controls-for-instagram/issues
支持的语言 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
    }
}