Connectivity Checker

A connectivity checker that informs you when internet goes out by showing a little message on each tab

ما هو Connectivity Checker؟

Connectivity Checker هو إضافة Chrome تم تطويرها بواسطة mail، والميزة الرئيسية لها هي "A connectivity checker that informs you when internet goes out by showing a little message on each tab".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Connectivity Checker

قم بتنزيل ملفات الامتداد Connectivity Checker بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        A simple tool that keeps a track of whether the internet is connected and lets you know when it goes down. Also detects captive portals                    

معلومات أساسية عن التمديد

الاسم Connectivity Checker Connectivity Checker
ID nbppecbhmichhmpoemgkkpefoaaoaioj
عنوان URL الرسمي https://chromewebstore.google.com/detail/connectivity-checker/nbppecbhmichhmpoemgkkpefoaaoaioj
الوصف A connectivity checker that informs you when internet goes out by showing a little message on each tab
حجم الملف 55.58 KB
عدد التثبيتات 23
النسخة الحالية 0.0.1
آخر تحديث 2019-07-13
تاريخ النشر 2019-07-09
المطور mail
نوع الدفع free
موقع الإضافة https://somesh.io
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "0.0.1",
    "name": "Connectivity Checker",
    "description": "A connectivity checker that informs you when internet goes out by showing a little message on each tab",
    "browser_action": {
        "default_icon": {
            "16": "icons\/wifi-16.png",
            "32": "icons\/wifi-32.png",
            "64": "icons\/wifi-64.png",
            "128": "icons\/wifi-128.png"
        },
        "default_title": "Connectivity Checker",
        "default_popup": "src\/popup.html"
    },
    "icons": {
        "16": "icons\/wifi-16.png",
        "32": "icons\/wifi-32.png",
        "64": "icons\/wifi-64.png",
        "128": "icons\/wifi-128.png"
    },
    "background": {
        "persistent": true,
        "scripts": [
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "src\/content.js"
            ],
            "css": [
                "src\/content.css"
            ]
        }
    ],
    "permissions": [
        "activeTab"
    ]
}