AdBlocker Lite

Block ads seamlessly on popular websites.

AdBlocker Liteคืออะไร?

AdBlocker Lite เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chYer และคุณลักษณะหลักของมันคือ "Block ads seamlessly on popular websites."

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

screenshot
screenshot
screenshot

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

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

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

                        AdBlocker Lite is a browser add-on that enables you to block annoying ads seamlessly on popular websites. It has 2 modes, Lite and Full. In lite mode, the extension uses the least amount of CPU power and memory and it runs based on pure CSS. Lite mode is ideal for slow machines. In full mode, more ads are targeted and more CPU power and memory are required.

Some important features:

1. It allows you to block annoying ads, scripts, images, iframes and many more.
2. Ultra-lite extension with no significant memory and CPU usage.
3. Unlike other similar products, AdBlocker Lite uses hard coded filtering rules for fast and reliable performance.
4. Provides an easy access filtering list if you wish to allow advertisement on some websites.
5. Includes ON|OFF  button to quickly disable or enable the extension.
6. Includes Highlight/Block modes; in highlight mode, you can only highlight ads without blocking (hiding) them, but in block mode, ads are blocked.
7. Easily switch between full and lite modes (default is lite mode).
8. Add custom blocking rules. Currently, only rules in the form of css-selectors are accepted.
9. Badge icon text shows the number of blocked ads (active in full mode only).

Note 1: In AdBlocker Lite you can allow some websites (including its homepage) to show non-intrusive advertisements. By doing this you support websites that rely on advertising. Some websites are added by default, but this list can be modified at any time.

Note 2: AdBlocker Lite is designed to block ads on popular websites only (i.e. facebook, youtube, gmail, yahoo mail, etc). Besides, it does not block popup-ads, if you need a full-featured adblocker please use other adblocker addons in the addon store.

Note 3: To add a custom rule, please use css-selectors. For example, the following rule hides a div element with class test: div[class='test']. Please note, you can only add valid CSS rules, otherwise, it won't be added to the list.                    

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

ชื่อ AdBlocker Lite AdBlocker Lite
ID kihnnjkmbhhockopicpjhalcbchpmkkh
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/adblocker-lite/kihnnjkmbhhockopicpjhalcbchpmkkh
คำอธิบาย Block ads seamlessly on popular websites.
ขนาดไฟล์ 931 KB
จำนวนการติดตั้ง 4,855
เวอร์ชันปัจจุบัน 0.4.4
อัปเดตครั้งล่าสุด 2022-09-11
วันที่เผยแพร่ 2020-01-15
คะแนน 3.44/5 รวมทั้งหมด 57 คะแนน
ผู้พัฒนา chYer
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.4.4",
    "manifest_version": 3,
    "name": "AdBlocker Lite",
    "description": "Block ads seamlessly on popular websites.",
    "homepage_url": "https:\/\/mybrowseraddon.com\/firewall-lite.html",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "activeTab",
        "declarativeNetRequest"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "resources": [
                "data\/content_script\/inject_b.css",
                "data\/content_script\/inject_h.css"
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "default",
                "enabled": true,
                "path": "data\/filters\/default.json"
            }
        ]
    },
    "action": {
        "default_title": "AdBlocker Lite",
        "default_popup": "data\/popup\/popup.html",
        "default_icon": {
            "16": "data\/icons\/16.png",
            "32": "data\/icons\/32.png",
            "48": "data\/icons\/48.png",
            "64": "data\/icons\/64.png"
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "run_at": "document_start",
            "js": [
                "data\/content_script\/inject.js"
            ]
        }
    ],
    "icons": {
        "16": "data\/icons\/16.png",
        "32": "data\/icons\/32.png",
        "48": "data\/icons\/48.png",
        "64": "data\/icons\/64.png",
        "128": "data\/icons\/128.png"
    }
}