Popup Blocker (Lite)

A fast, easy and secure way to block all unwanted popups and pop-unders!

Popup Blocker (Lite) là gì?

Popup Blocker (Lite) là một tiện ích mở rộng Chrome được phát triển bởi Jorvi, và tính năng chính của nó là "A fast, easy and secure way to block all unwanted popups and pop-unders!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Popup Blocker (Lite)

Tải xuống các tệp mở rộng Popup Blocker (Lite) dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Popup Blocker (Lite) is a browser extension to block all annoying pop-ups and pop-unders. When the addon detects a popup, it will block it immediately and the badge icon will show the blocked item (number will increase). If you want to see notifications about the blocked popup, please enable desktop notifications from the options page.

Some features:
a. Allows you to block all unwanted popups and pop-unders.
b. Has a built-in feature to whitelist the desired domain to show popups.
c. Works fundamentally different than other popup blockers, therefore it works in almost all cases.
d. Has a switch to turn the addon ON or OFF from toolbar popup UI.
e. Several settings in the options page to adjust the addon's functionality to your need.
f. Has badge icon text to show you the number of blocked popups.
g. Very lite addon with no significant CPU and memory usage.

When you first install the addon, some websites are added to the whitelist table by default (open the options page to see or edit the list). When a domain is whitelisted, the addon's toolbar button icon is green. When the addon is disabled or a website URL is invalid (i.e. chrome://) the icon is dark gray. In all other cases, the toolbar icon is red. So, while browsing with this addon, please be aware of the icon color to make sure it is set based on your desire.

Note: to report bugs, please fill out the bug report form on the addon's homepage (https://mybrowseraddon.com/popup-blocking.html)                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Popup Blocker (Lite) Popup Blocker (Lite)
ID flkpkonhokophabdnmggfbdlbdknebel
URL Chính Thức https://chromewebstore.google.com/detail/popup-blocker-lite/flkpkonhokophabdnmggfbdlbdknebel
Mô tả A fast, easy and secure way to block all unwanted popups and pop-unders!
Kích Thước Tệp 65.43 KB
Số Lần Cài Đặt 2,656
Phiên Bản Hiện Tại 0.1.9
Cập Nhật Lần Cuối 2023-09-23
Ngày Phát Hành 2020-06-29
Đánh Giá 3.76/5 Tổng số 25 Đánh Giá
Nhà Phát Triển Jorvi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://mybrowseraddon.com/popup-blocking.html
URL Trang Trợ Giúp https://mybrowseraddon.com/popup-blocking.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.1.9",
    "manifest_version": 3,
    "name": "Popup Blocker (Lite)",
    "host_permissions": [
        ""
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/popup-blocking.html",
    "description": "A fast, easy and secure way to block all unwanted popups and pop-unders!",
    "commands": {
        "_execute_action": []
    },
    "background": {
        "service_worker": "background.js"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "data\/options\/options.html"
    },
    "permissions": [
        "tabs",
        "storage",
        "scripting",
        "webRequest",
        "notifications"
    ],
    "action": {
        "default_title": "Popup Blocker (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,
            "match_about_blank": true,
            "matches": [
                ""
            ],
            "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"
    }
}