Connectivity Checker
A connectivity checker that informs you when internet goes out by showing a little message on each tab
Connectivity Checker क्या है?
Connectivity Checker mail द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A connectivity checker that informs you when internet goes out by showing a little message on each tab"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Connectivity Checker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
एक्सटेंशन की मूल जानकारी
नाम | |
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 |
डेवलपर | |
भुगतान के प्रकार | 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" ] } |