video-saver

I am video-saver, save video for you, when you browse web page contains video.

Co to jest video-saver?

video-saver to rozszerzenie Chrome opracowane przez goggle1, a jego główną funkcją jest „I am video-saver, save video for you, when you browse web page contains video.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia video-saver

Pobierz pliki rozszerzeń video-saver 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

                        When you play wonderful video on web, you want to save it. How?
I am video-saver, save video for you.
When you browse web page contains video, it will download video automatically when play done. 
Two files will be usually downloaded, which are audio track and video track. You can combine them using ffmpeg tool, then you can own one complete video.                    

Podstawowe informacje o rozszerzeniu

Nazwa video-saver video-saver
ID edkibkgfiogekppegdmdilkpdbdjoink
Oficjalny URL https://chromewebstore.google.com/detail/video-saver/edkibkgfiogekppegdmdilkpdbdjoink
Opis I am video-saver, save video for you, when you browse web page contains video.
Rozmiar pliku 14.72 KB
Liczba instalacji 16
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2022-06-15
Data Publikacji 2022-06-15
Deweloper goggle1
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",
    "manifest_version": 3,
    "name": "video-saver",
    "version": "1.0",
    "description": "I am video-saver, save video for you, when you browse web page contains video. ",
    "author": "goob",
    "icons": {
        "48": "icon.png",
        "128": "icon.png"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/save-video.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ]
}