
ブラウザベースのネットワーク接続チェッカー。ファイアウォールルール、アクセス制限、および企業ポリシーの遵守をテストするために使用します。HTTP Fetch と Image Ping による測定をサポートし、JSONベースのサービスパックとルールセットを利用します。
[EN] | TR
ブラウザベースの到達可能性チェッカー — ネットワーク接続、ファイアウォールルール、アクセス制限をテストします。
単一HTMLファイル。依存関係ゼロ。実行にウェブサーバーは不要。
# 最も簡単: 直接開く
open index.html
# または任意の静的サーバーで
npx serve .
python3 -m http.server 8080
またはNetlifyにドラッグ&ドロップ → netlify.com/drop
services/フォルダ内のJSONファイルは次のスキーマに従います:
{
"meta": {
"id": "my-pack",
"name": "Pack Name",
"description": "What it contains",
"icon": "◈",
"version": "1.0.0",
"author": "username",
"tags": ["category", "tag"]
},
"services": [
{
"name": "Example Service",
"host": "example.com",
"url": "https://www.example.com",
"favicon": "https://www.example.com/favicon.ico"
}
]
}
ルール: url と favicon フィールドはHTTPSである必要があります。favicon はサービス自身のサーバーに直接ホストされている画像URLでなければなりません(Googleプロキシではありません)。
rulesets/フォルダ内のJSONファイルは次のスキーマに従います:
{
"meta": {
"id": "my-ruleset",
"name": "Ruleset Name",
"description": "What it checks",
"version": "1.0.0",
"author": "username",
"tags": ["corporate", "compliance"]
},
"rules": [
{
"id": "rule-github",
"name": "GitHub Access",
"description": "Mandatory for developer workflow",
"service": {
"name": "GitHub",
"host": "github.com",
"url": "https://github.com",
"favicon": "https://github.com/favicon.ico"
},
"severity": "critical",
"conditions": {
"must_reach": true,
"max_ping_ms": 800
},
"fail_message": "GitHub is inaccessible.",
"pass_message": "GitHub is accessible."
}
]
}
新しいサービスパックまたはルールセットを追加するには → CONTRIBUTING.md
MIT © Abdullah Ali GÜN
Tarayıcı tabanlı erişilebilirlik denetleyici — ağ bağlantısını, firewall kurallarını ve erişim kısıtlamalarını test edin.
Tek HTML dosyası. Sıfır bağımlılık. Çalıştırmak için web sunucusu gerekmez.
# En basit: direkt aç
open index.html
# Ya da herhangi bir statik sunucu ile
npx serve .
python3 -m http.server 8080
Veya Netlify'a sürükle-bırak → netlify.com/drop
services/ klasöründeki JSON dosyaları bu şemayı takip eder:
{
"meta": {
"id": "my-pack",
"name": "Paket Adı",
"description": "Ne içerdiği",
"icon": "◈",
"version": "1.0.0",
"author": "kullanici-adi",
"tags": ["kategori", "etiket"]
},
"services": [
{
"name": "Örnek Servis",
"host": "ornek.com",
"url": "https://www.ornek.com",
"favicon": "https://www.ornek.com/favicon.ico"
}
]
}
Kural: url ve favicon alanları HTTPS olmalı. favicon doğrudan servisin kendi sunucusunda barındırılan bir resim URL'si olmalı (Google proxy değil).
rulesets/ klasöründeki JSON dosyaları bu şemayı takip eder:
{
"meta": {
"id": "my-ruleset",
"name": "Kural Seti Adı",
"description": "Ne denetlediği",
"version": "1.0.0",
"author": "kullanici-adi",
"tags": ["corporate", "compliance"]
},
"rules": [
{
"id": "rule-github",
"name": "GitHub Erişimi",
"description": "Geliştirici iş akışı için zorunlu",
"service": {
"name": "GitHub",
"host": "github.com",
"url": "https://github.com",
"favicon": "https://github.com/favicon.ico"
},
"severity": "critical",
"conditions": {
"must_reach": true,
"max_ping_ms": 800
},
"fail_message": "GitHub erişilemiyor.",
"pass_message": "GitHub erişilebilir."
}
]
}
Yeni bir servis paketi veya kural seti eklemek için → CONTRIBUTING.md
MIT © Abdullah Ali GÜN
| フィールド | 説明 |
|---|
severity | critical / warning / info |
conditions.must_reach | true → 到達可能である必要、false → ブロックされている必要 |
conditions.max_ping_ms | オプション。このmsを超えると失敗 |
fail_message | ルール違反時に表示されるメッセージ |
pass_message | ルール成功時に表示されるメッセージ |
| Alan | Açıklama |
|---|
severity | critical / warning / info |
conditions.must_reach | true → erişilebilmeli, false → engellenmiş olmalı |
conditions.max_ping_ms | Opsiyonel. Bu ms üstü → başarısız |
fail_message | Kural ihlalinde gösterilecek mesaj |
pass_message | Kural karşılandığında gösterilecek mesaj |