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"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Connectivity Checker
ดาวน์โหลดไฟล์ส่วนขยาย Connectivity Checker ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
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" ] } |