BitChute Video Source

Shows the video source of the current page

Co to jest BitChute Video Source?

BitChute Video Source to rozszerzenie Chrome opracowane przez Johann B., a jego główną funkcją jest „Shows the video source of the current page”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia BitChute Video Source

Pobierz pliki rozszerzeń BitChute Video Source 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

                        This extension displays the URL of the video to link or for download.                    

Podstawowe informacje o rozszerzeniu

Nazwa BitChute Video Source BitChute Video Source
ID bdnaoieafaddgjiecbhnodhbalhblmhl
Oficjalny URL https://chromewebstore.google.com/detail/bitchute-video-source/bdnaoieafaddgjiecbhnodhbalhblmhl
Opis Shows the video source of the current page
Rozmiar pliku 1.21 MB
Liczba instalacji 6,258
Aktualna Wersja 0.9
Ostatnia Aktualizacja 2020-11-10
Data Publikacji 2020-06-07
Ocena 4.46/5 Łącznie 13 Oceny
Deweloper Johann B.
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": "BitChute Video Source",
    "description": "Shows the video source of the current page",
    "version": "0.9",
    "browser_action": {
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "64": "64.png",
        "128": "128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.bitchute.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "manifest_version": 2
}