Video Controls for Instagram

Enables video controls on instagram

Video Controls for Instagramคืออะไร?

Video Controls for Instagram เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Ćavar และคุณลักษณะหลักของมันคือ "Enables video controls on instagram"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Video Controls for Instagram

ดาวน์โหลดไฟล์ส่วนขยาย 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
    }
}