Video Controls for Instagram

Enables video controls on instagram

Video Controls for Instagram là gì?

Video Controls for Instagram là một tiện ích mở rộng Chrome được phát triển bởi David Ćavar, và tính năng chính của nó là "Enables video controls on instagram".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Video Controls for Instagram

Tải xuống các tệp mở rộng Video Controls for Instagram dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Video Controls for Instagram Video Controls for Instagram
ID fbfifojpjhfeiiefgbddgkabhjhkofkf
URL Chính Thức https://chrome.google.com/webstore/detail/video-controls-for-instag/fbfifojpjhfeiiefgbddgkabhjhkofkf
Mô tả Enables video controls on instagram
Kích Thước Tệp 12.9 KB
Số Lần Cài Đặt 183
Phiên Bản Hiện Tại 1.3.0
Cập Nhật Lần Cuối 2019-11-21
Ngày Phát Hành 2019-11-21
Đánh Giá 3.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển David Ćavar
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Palethorn/video-controls-for-instagram
URL Trang Trợ Giúp https://github.com/Palethorn/video-controls-for-instagram/issues
Ngôn Ngữ Được Hỗ Trợ 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
    }
}