Video Screen Grabber

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

Co to jest Video Screen Grabber?

Video Screen Grabber to rozszerzenie Chrome opracowane przez Shang Liang, a jego główną funkcją jest „Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Video Screen Grabber

Pobierz pliki rozszerzeń Video Screen Grabber 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

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Video Screen Grabber Video Screen Grabber
ID chacmggpblehgnjocmmedakmcnmhgnbo
Oficjalny URL https://chromewebstore.google.com/detail/video-screen-grabber/chacmggpblehgnjocmmedakmcnmhgnbo
Opis Screen grab/capture the current frame of video elements of websites. Works for video conference calls, too.
Rozmiar pliku 36.25 KB
Liczba instalacji 89
Aktualna Wersja 0.0.2
Ostatnia Aktualizacja 2020-06-04
Data Publikacji 2020-06-03
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Shang Liang
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}