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によって開発されたChromeの拡張機能で、その主な機能は「A connectivity checker that informs you when internet goes out by showing a little message on each tab」です。
拡張機能のスクリーンショット
Connectivity Checker拡張機能のCRXファイルをダウンロード
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"
]
} | |