FrameGrab

Tools for Video Frame Capture

Qu'est-ce que FrameGrab ?

FrameGrab est une extension Chrome développée par tristanphan, et sa fonction principale est "Tools for Video Frame Capture".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension FrameGrab

Téléchargez les fichiers d'extension FrameGrab au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom FrameGrab FrameGrab
ID gjollkpcmnigdfnkdhkpgjbiahgijghc
URL Officiel https://chromewebstore.google.com/detail/framegrab/gjollkpcmnigdfnkdhkpgjbiahgijghc
Description Tools for Video Frame Capture
Taille du Fichier 1.12 MB
Nombre d'Installations 160
Version Actuelle 0.0.1.0
Dernière Mise à Jour 2021-06-03
Date de Publication 2021-06-01
Évaluation 5.00/5 Total 5 Évaluations
Développeur tristanphan
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
            ]
        }
    ]
}