Web Optimizer

Unlock restrictions, protect your privacy, remove annoying elements, auto clicks, and replace disliked words.

Web Optimizerคืออะไร?

Web Optimizer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย namelessitguy2022 และคุณลักษณะหลักของมันคือ "Unlock restrictions, protect your privacy, remove annoying elements, auto clicks, and replace disliked words."

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

screenshot
screenshot
screenshot

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

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

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

                        Unlock restrictions, protect your privacy, remove annoying elements, auto clicks, and replace disliked words.

Features:
Auto click elements from web pages
(Such as expander, close .....)

Replace disliked words from web pages
Unlock text select restriction
Unlock copy restriction
Unlock context menu
Remove anti ad blocker layer
Block notifications

Prevent WebRTC IP leaks
(WebRTC will leak your real IP address even if you are using a proxy or VPN.)

Prevent visibility detection
(Websites can track your visibility. For instance, they may make you watch Ads for 60 seconds before allowing you to view the video. If you minimize your browser or switch to a different tab, the website can detect it and pause the countdown. (This feature probability won't work.))

Enable do not track
(Tell websites not to track you. (it still can))

Disable third party cookies
(A third-party cookie is placed on a website by someone other than the owner (a third party) and collects user data for the third party. As with standard cookies, third-party cookies are placed so that a site can remember something about the user at a later time. Third-party cookies, however, are often set by advertising networks that a site may subscribe to in the hopes of driving up sales or page hits.)

Disable leave site alert                    

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

ชื่อ Web Optimizer Web Optimizer
ID cnhiehgbljjkkiibdfochmcffldemhph
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/web-optimizer/cnhiehgbljjkkiibdfochmcffldemhph
คำอธิบาย Unlock restrictions, protect your privacy, remove annoying elements, auto clicks, and replace disliked words.
ขนาดไฟล์ 386 KB
จำนวนการติดตั้ง 821
เวอร์ชันปัจจุบัน 1.1.1
อัปเดตครั้งล่าสุด 2023-04-12
วันที่เผยแพร่ 2023-04-10
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา namelessitguy2022
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/filecxx/WebOptimizer
URL หน้าช่วยเหลือ https://github.com/filecxx/WebOptimizer
ภาษาที่รองรับ de,en,ru,zh-CN,ja,ko
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "__MSG_appname__",
    "version": "1.1.1",
    "description": "__MSG_description__",
    "homepage_url": "https:\/\/github.com\/filecxx\/WebOptimizer",
    "default_locale": "en",
    "icons": {
        "128": "icons\/icon.png"
    },
    "background": {
        "service_worker": "background\/background.js"
    },
    "action": {
        "default_icon": "icons\/icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "config.js",
                "libs\/functions.js",
                "content\/content_injector.js",
                "content\/content_element_selector.js",
                "content\/content_auto_click.js",
                "content\/content_replace_words.js",
                "content\/content.js"
            ],
            "match_about_blank": true,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "ftp:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "config.js",
                "icons\/*",
                "content\/*",
                "icons\/*",
                "images\/*",
                "libs\/*",
                "libs\/*\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "tabs",
        "contextMenus",
        "storage",
        "privacy",
        "contentSettings",
        "scripting",
        "webNavigation"
    ],
    "host_permissions": [
        "",
        "*:\/\/*\/*",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ]
}