FrameGrab

Tools for Video Frame Capture

Co to jest FrameGrab?

FrameGrab to rozszerzenie Chrome opracowane przez tristanphan, a jego główną funkcją jest „Tools for Video Frame Capture”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia FrameGrab

Pobierz pliki rozszerzeń FrameGrab w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa FrameGrab FrameGrab
ID gjollkpcmnigdfnkdhkpgjbiahgijghc
Oficjalny URL https://chromewebstore.google.com/detail/framegrab/gjollkpcmnigdfnkdhkpgjbiahgijghc
Opis Tools for Video Frame Capture
Rozmiar pliku 1.12 MB
Liczba instalacji 160
Aktualna Wersja 0.0.1.0
Ostatnia Aktualizacja 2021-06-03
Data Publikacji 2021-06-01
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper tristanphan
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
            ]
        }
    ]
}