Video Screen Grabber

Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.

Vad är Video Screen Grabber?

Video Screen Grabber är en Chrome-tillägg utvecklad av Shang Liang, och dess huvudfunktion är "Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.".

Tilläggsskärmbilder

screenshot

Ladda ner Video Screen Grabber-förlängningens CRX-fil

Ladda ner Video Screen Grabber-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        Takes a screen grab of the video in the current page of what you are seeing now. For those people who needs to take screenshots of videos for their daily job (like my wife).  

Icon made by Freepik from www.flaticon.com                    

Grundläggande Information om Tillägg

Namn Video Screen Grabber Video Screen Grabber
ID chacmggpblehgnjocmmedakmcnmhgnbo
Officiell webbadress https://chromewebstore.google.com/detail/video-screen-grabber/chacmggpblehgnjocmmedakmcnmhgnbo
Beskrivning Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.
Filstorlek 36.25 KB
Antal Installationer 89
Aktuell Version 0.0.2
Senast Uppdaterad 2020-06-04
Publiceringsdatum 2020-06-03
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Shang Liang
E-post [email protected]
Betalningssätt free
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Video Screen Grabber",
    "version": "0.0.2",
    "manifest_version": 2,
    "description": "Screen grab\/capture the current frame of video elements of websites. Works for video conference calls, too.",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "all_frames": true,
            "js": [
                "content.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    }
}