Web Guardian

Filters Websites and Web Content

Web Guardianคืออะไร?

Web Guardian เป็นส่วนขยายของ Chrome ที่พัฒนาโดย elyonis และคุณลักษณะหลักของมันคือ "Filters Websites and Web Content"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Web Guardian

ดาวน์โหลดไฟล์ส่วนขยาย Web Guardian ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        *** Bug Fix ***
A bug causing page flags necessarily has been fixed.  Update to version 1.0.6 and reset default filter options to implement fix.

Web Guardian is a real time web content filtering solution.  It finds and blocks obscene words and restricts whole pages according to content concentration.

Web Guardian offers complete filtering flexibility by allowing users to customize a domain white-list, domain black-list, and list of obscene words.  In the list of obscene words, each blocked word is assigned a user chosen weight.  These weights are summed to determine whether or not a site should be restricted.

Web Guardian also does all of this in real time, meaning dynamically updated content (such as scrolling Facebook) is no problem.  New words are detected and blocked as they come into existence.

Web Guardian also features password restricted options so that changes may only be made by authorized personnel.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Web Guardian Web Guardian
ID pjfphmbojlohmlllhdonekppepdpbkme
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-guardian/pjfphmbojlohmlllhdonekppepdpbkme
คำอธิบาย Filters Websites and Web Content
ขนาดไฟล์ 295 KB
จำนวนการติดตั้ง 742
เวอร์ชันปัจจุบัน 1.0.6
อัปเดตครั้งล่าสุด 2016-04-21
วันที่เผยแพร่ 2016-04-20
คะแนน 4.33/5 รวมทั้งหมด 9 คะแนน
ผู้พัฒนา elyonis
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Web Guardian",
    "description": "Filters Websites and Web Content",
    "version": "1.0.6",
    "browser_action": {
        "default_icon": "images\/icon48_bw.png",
        "default_popup": "popup.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png",
        "512": "images\/icon512.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "findAndReplaceDOMText.js",
                "webguardian.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/icon512.png",
        "icons\/ic_delete_black_24dp_1x.png",
        "icons\/ic_add_box_black_24dp_1x.png",
        "icons\/ic_visibility_black_24dp_1x.png",
        "icons\/ic_visibility_off_black_24dp_1x.png",
        "icons\/ic_close_black_24dp_1x.png",
        "default.json"
    ]
}