ByteSeal

ByteSeal's browser extension for password management

Co to jest ByteSeal?

ByteSeal to rozszerzenie Chrome opracowane przez Elementik Technologies Pvt. Ltd., a jego główną funkcją jest „ByteSeal's browser extension for password management”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia ByteSeal

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

                        Byteseal - is a password manager that locks passwords in a secure vault.                    

Podstawowe informacje o rozszerzeniu

Nazwa ByteSeal ByteSeal
ID jnjcjmmhcflbomghgnoogkcgolcnkbhe
Oficjalny URL https://chromewebstore.google.com/detail/byteseal/jnjcjmmhcflbomghgnoogkcgolcnkbhe
Opis ByteSeal's browser extension for password management
Rozmiar pliku 3.49 MB
Liczba instalacji 657
Aktualna Wersja 2.5.0
Ostatnia Aktualizacja 2024-02-27
Data Publikacji 2020-08-18
Ocena 4.40/5 Łącznie 5 Oceny
Deweloper Elementik Technologies Pvt. Ltd.
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://www.byteseal.in
Adres URL Strony Pomocy https://byteseal.freshdesk.com/support/home
Adres URL Strony Polityki Prywatności https://www.byteseal.in/privacypolicy
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "ByteSeal's browser extension for password management",
    "version": "2.5.0",
    "manifest_version": 3,
    "name": "ByteSeal",
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "unlimitedStorage",
        "tabs",
        "activeTab",
        "scripting",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*.png",
                "*.svg",
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "logo.svg",
                "input-append.svg",
                "full.png.png",
                "inject.js",
                "assets\/img\/brand\/logo.svg",
                "assets\/fonts\/*.ttf"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": {
        "script_src": [
            "'self'",
            "'unsafe-eval'",
            "'unsafe-inline'"
        ],
        "object_src": [
            "'self'"
        ]
    }
}