FrameGrab

Tools for Video Frame Capture

FrameGrabคืออะไร?

FrameGrab เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tristanphan และคุณลักษณะหลักของมันคือ "Tools for Video Frame Capture"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย FrameGrab

ดาวน์โหลดไฟล์ส่วนขยาย FrameGrab ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        FrameGrab is the extension that lets you capture frames from videos.

With FrameGrab, you can easily take screenshots at original resolution from videos you watch without worrying about the progress bar being in the way!

Functions:
- Download Current Frame
- Open Frame in New Tab (to copy or download)
- Open Frame in Background Tab
- Zero Speed (use with system screenshot function for crop)

Configure in the Keyboard Shortcuts section of the Extensions page                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ FrameGrab FrameGrab
ID gjollkpcmnigdfnkdhkpgjbiahgijghc
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/framegrab/gjollkpcmnigdfnkdhkpgjbiahgijghc
คำอธิบาย Tools for Video Frame Capture
ขนาดไฟล์ 1.12 MB
จำนวนการติดตั้ง 160
เวอร์ชันปัจจุบัน 0.0.1.0
อัปเดตครั้งล่าสุด 2021-06-03
วันที่เผยแพร่ 2021-06-01
คะแนน 5.00/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา tristanphan
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "FrameGrab",
    "description": "Tools for Video Frame Capture",
    "version": "0.0.1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "commands": {
        "download": {
            "suggested_key": {
                "default": "Ctrl+Shift+Down",
                "mac": "Command+Shift+Down"
            },
            "description": "Download Current Frame"
        },
        "newtab": {
            "suggested_key": {
                "default": "Ctrl+Shift+Up",
                "mac": "Command+Shift+Up"
            },
            "description": "Open Current Frame in New Tab"
        },
        "newtabbg": {
            "suggested_key": {
                "default": "Ctrl+Shift+Right",
                "mac": "Command+Shift+Right"
            },
            "description": "Open Current Frame in New Background Tab"
        },
        "slow": {
            "suggested_key": {
                "default": "Ctrl+Shift+Left",
                "mac": "Command+Shift+Left"
            },
            "description": "Toggle Speed to 0"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "page.js"
            ]
        }
    ]
}