FrameGrab

Tools for Video Frame Capture

FrameGrabとは何ですか?

FrameGrabはtristanphanによって開発されたChromeの拡張機能で、その主な機能は「Tools for Video Frame Capture」です。

拡張機能のスクリーンショット

screenshot

FrameGrab拡張機能のCRXファイルをダウンロード

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
Eメール [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"
            ]
        }
    ]
}