VPN Location Guard

Hide your geographic location from websites.

Co to jest VPN Location Guard?

VPN Location Guard to rozszerzenie Chrome opracowane przez swipenot.ysns, a jego główną funkcją jest „Hide your geographic location from websites.”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia VPN Location Guard

Pobierz pliki rozszerzeń VPN Location Guard 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

                        A VPN Location Guard, with a focus on simplicity of use.
Make the internet think you are where your VPN is.
Fun music and user interface.                    

Podstawowe informacje o rozszerzeniu

Nazwa VPN Location Guard VPN Location Guard
ID bccgagfkhgldclcggbbcifbjlfmmjkdn
Oficjalny URL https://chrome.google.com/webstore/detail/vpn-location-guard/bccgagfkhgldclcggbbcifbjlfmmjkdn
Opis Hide your geographic location from websites.
Rozmiar pliku 1.85 MB
Liczba instalacji 327
Aktualna Wersja 1.0.2
Ostatnia Aktualizacja 2021-05-23
Data Publikacji 2020-08-17
Ocena 1.00/5 Łącznie 1 Oceny
Deweloper swipenot.ysns
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/electrocuted-slug/vpn-location-guard
Adres URL Strony Pomocy https://github.com/electrocuted-slug/vpn-location-guard
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.0.2",
    "short_name": "__MSG_appShortName__",
    "manifest_version": 2,
    "default_locale": "en",
    "icons": {
        "16": "images\/vpn_location_guard_on_16.png",
        "128": "images\/vpn_location_guard_on_128.png"
    },
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/vpn_location_guard_on_19.png",
            "38": "images\/vpn_location_guard_on_38.png"
        },
        "default_popup": "pages\/popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "scripts\/jumpinpage.js"
    ],
    "permissions": [
        "",
        "storage",
        "tabs",
        "activeTab"
    ]
}