Blocki - Wallet WatchDog

Keeps your crypto wallet safe by changing its paw color on trusted and scam websites.

Что такое Blocki - Wallet WatchDog?

Blocki - Wallet WatchDog - это расширение Chrome, разработанное https://tryblocki.com, и его основная функция - "Keeps your crypto wallet safe by changing its paw color on trusted and scam websites.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения Blocki - Wallet WatchDog

Скачайте файлы расширений Blocki - Wallet WatchDog в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Blocki the Wallet WatchDog keeps your crypto wallet safe by changing its paw color in your browser's toolbar to let you know if your are on a trusted or possibly harmful crypto website. Its 4 colors are: green 🟢 (Trust List), orange 🟠 (warning), red 🔴 (Block List), or black ⚫️ (unknown security status). Clicking the paw shows helpful security and crypto information about the current website. Blocki works with Chromium-based browsers including: Chrome, Brave, Edge, Yandex, and Opera. The Firefox version will be available soon.

🔜 The first dex/memecoin charting tool will be available in Version 1.0.0!

🔒 Never spies on which websites you visit. The Trust List and Block List are both automatically downloaded inside the extension every 30 minutes. In fact, Blocki's protection will work exactly the same if your internet is turned off.

⭐️ Premium WatchDog URLs are scanned daily for security issues and show a special star in the paw menu. Visit tryblocki.com/watchdog-websites to learn more, verify a WatchDog URL, or add your website to the WatchDog list.

🏆 You can win prizes by simply using the extension: tryblocki.com/giveaways

Website: tryblocki.com
Twitter: twitter.com/tryblocki
Telegram 24/7 chat room: t.me/tryblocki                    

Основная информация о расширении

Название Blocki - Wallet WatchDog Blocki - Wallet WatchDog
ID cemlhfbciegflkpppmhdjmkoffofibho
Официальный URL https://chromewebstore.google.com/detail/blocki-wallet-watchdog/cemlhfbciegflkpppmhdjmkoffofibho
Описание Keeps your crypto wallet safe by changing its paw color on trusted and scam websites.
Размер файла 1.91 MB
Количество установок 33
Текущая Версия 0.9.9
Последнее Обновление 2023-12-18
Дата публикации 2023-11-14
Рейтинг 5.00/5 Всего 19 оценок
Разработчик https://tryblocki.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://tryblocki.com
URL страницы помощи https://tryblocki.com/contact
URL страницы политики конфиденциальности https://tryblocki.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blocki - Wallet WatchDog",
    "version": "0.9.9",
    "icons": {
        "16": "assets\/icons\/16x16\/paw-print-16x16-green.png",
        "32": "assets\/icons\/32x32\/paw-print-32x32-green.png",
        "48": "assets\/icons\/48x48\/paw-print-48x48-green.png",
        "128": "assets\/icons\/128x128\/paw-print-128x128-green.png"
    },
    "description": "Keeps your crypto wallet safe by changing its paw color on trusted and scam websites.",
    "short_name": "Blocki - Wallet WatchDog",
    "permissions": [
        "tabs",
        "notifications",
        "activeTab",
        "unlimitedStorage",
        "storage",
        "alarms"
    ],
    "host_permissions": [
        ""
    ],
    "content_security_policy": {
        "script-src": "self",
        "object-src": "self"
    },
    "author": "Blocki",
    "minimum_chrome_version": "88",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "assets\/icons\/16x16\/paw-print-16x16-black.png",
            "32": "assets\/icons\/32x32\/paw-print-32x32-green.png",
            "48": "assets\/icons\/48x48\/paw-print-48x48-green.png",
            "128": "assets\/icons\/128x128\/paw-print-128x128-green.png"
        },
        "default_title": "Blocki - Wallet WatchDog",
        "chrome_style": false
    },
    "options_page": "options.html",
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "background": {
        "service_worker": "js\/blocki-bg.js"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/blocki-cs.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "*",
                "js\/*",
                "css\/*",
                "css\/options",
                "assets\/*",
                "assets\/fonts\/*",
                "assets\/icons\/*",
                "assets\/icons\/16x16\/*",
                "assets\/icons\/32x32\/*",
                "assets\/icons\/48x48\/*",
                "assets\/icons\/128x128\/*",
                "assets\/icons\/16x16\/paw-print-16x16-green.png",
                "assets\/icons\/32x32\/paw-print-32x32-green.png",
                "assets\/icons\/48x48\/paw-print-48x48-green.png",
                "assets\/icons\/128x128\/paw-print-128x128-green.png"
            ],
            "matches": [
                "*:\/\/*\/*",
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ]
        }
    ]
}