ArchShield: Safe Search

ArchShield enforces safesearch on multiple websites such as Google and Reddit while also blocking over 5 million harmful websites

ArchShield: Safe Searchคืออะไร?

ArchShield: Safe Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ArchShield และคุณลักษณะหลักของมันคือ "ArchShield enforces safesearch on multiple websites such as Google and Reddit while also blocking over 5 million harmful websites"

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

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ArchShield: Safe Search

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

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

                        ArchShield is a browser extension that provides a safe and secure browsing experience. Its main feature is enforced Safe Search which ensures that your search results are free of adult content and other potentially harmful material. This is achieved by automatically redirecting you to a safe version of search engines like Google and Bing. ArchShield is lightweight and easy to use, so you can browse the web without worrying about unwanted content. Upgrade your browsing experience with ArchShield today.

ArchShield is the ultimate safe search tool for your browser. With its advanced algorithms and powerful filters, ArchShield ensures that you only see safe, appropriate content while browsing the web. Whether you're a parent concerned about your children's online safety, or just someone who wants to avoid accidentally stumbling upon NSFW content, ArchShield has you covered. One of its unique features is that it has a Reddit SafeSearch where all the NSFW subreddits are blocked, so you can browse the platform without any worries. ArchShield also offers protection from potentially harmful websites, ensuring that your browsing experience is always safe, clean and enjoyable. With ArchShield, you can rest easy knowing that your browsing is in good hands. It's lightweight, easy to use and does not consume too much memory. It's designed to be non-intrusive, so you can continue to browse the web as you normally would without interruption. Try ArchShield today and experience the peace of mind that comes with safe browsing.                    

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

ชื่อ ArchShield: Safe Search ArchShield: Safe Search
ID lfkekhbpfmnclpodkoohbnhniddepehk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/archshield-safe-search/lfkekhbpfmnclpodkoohbnhniddepehk
คำอธิบาย ArchShield enforces safesearch on multiple websites such as Google and Reddit while also blocking over 5 million harmful websites
ขนาดไฟล์ 935 KB
จำนวนการติดตั้ง 147
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2023-04-12
วันที่เผยแพร่ 2023-01-22
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา ArchShield
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://ArchShield.net
URL หน้าช่วยเหลือ https://ArchShield.net
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "ArchShield: Safe Search",
    "version": "1.2",
    "description": "ArchShield enforces safesearch on multiple websites such as Google and Reddit while also blocking over 5 million harmful websites",
    "homepage_url": "https:\/\/archshield.net",
    "background": {
        "service_worker": "background_worker.js"
    },
    "action": {
        "default_popup": "arch_menu.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "128": "icon.png"
    },
    "permissions": [],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/website_blocker.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                ""
            ],
            "js": [
                "scripts\/safe_search.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.wikipedia.org\/*"
            ],
            "js": [
                "scripts\/wikipedia_sfw.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/*.reddit.com\/*"
            ],
            "js": [
                "scripts\/reddit_sfw.js"
            ],
            "run_at": "document_end"
        },
        {
            "matches": [
                "https:\/\/search.brave.com\/*"
            ],
            "js": [
                "scripts\/brave_safe.js"
            ],
            "run_at": "document_end"
        }
    ],
    "incognito": "split",
    "web_accessible_resources": [
        {
            "resources": [
                "pages\/*"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}