PopupFilter

__MSG_@manifest_description__

PopupFilterคืออะไร?

PopupFilter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Baptiste Thémine และคุณลักษณะหลักของมันคือ "__MSG_@manifest_description__"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        Prevents intempestive opening of popups from website links and scripts.

PopupFilter is a simple and lightweight add-on designed with WebExtensions API and compatible with Firefox, Chrome and Opera.
The role of this add-on is to block/filter every tabs opened by web scrips or links (which can be hidden in front of page sometimes), even with context menu "Open in...".
However, you can still open links in new tab normally by drag & drop links on nav bar or by switching temporarily to Normal Mode.

It's easy to switch between 3 different available modes :
- Normal Mode : Allow the opening of new tabs and new windows. (normal behaviour)
- Confirm Mode : Ask before opening and displaying content of new tabs/windows.
- Blocking Mode : Block all new tabs/windows opened by links or scripts.

PopupFilter contains also a settings webpage which enumerates open/confirm/blocked tabs and permits to do quick actions such as : close tab, display blocked content of tab, restore blocked tab, go to tab (double click).
The main advantage and difference of PopupFilter is that it works without any black/white list and it does not retrieve your browser history or personal data unlike other classical popup blockers. Keep your privacy safe !

Language support : English, French, Italian, Spanish.
Browser support : Firefox 54+, Firefox Android 57+, Chrome 42+, Opera 33+.                    

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

ชื่อ PopupFilter PopupFilter
ID mlenfedpcojbeegkmpnhjlndjelijpij
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/popupfilter/mlenfedpcojbeegkmpnhjlndjelijpij
คำอธิบาย __MSG_@manifest_description__
ขนาดไฟล์ 227 KB
จำนวนการติดตั้ง 863
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2018-10-29
วันที่เผยแพร่ 2018-10-29
คะแนน 3.25/5 รวมทั้งหมด 8 คะแนน
ผู้พัฒนา Baptiste Thémine
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Baptistou/PopupFilter
URL หน้าช่วยเหลือ https://github.com/Baptistou/PopupFilter
ภาษาที่รองรับ en,fr,es,it
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PopupFilter",
    "version": "4.0",
    "author": "Baptiste Th\u00e9mine",
    "homepage_url": "https:\/\/github.com\/Baptistou\/PopupFilter",
    "description": "__MSG_@manifest_description__",
    "default_locale": "en",
    "permissions": [
        "",
        "storage",
        "tabs",
        "webNavigation",
        "webRequest",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "32": "images\/icon32.png",
        "48": "images\/icon48.png",
        "64": "images\/icon64.png"
    },
    "background": {
        "scripts": [
            "functions.js",
            "webext.js",
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "PopupFilter",
        "default_icon": "images\/icon64.png",
        "default_popup": "browseraction\/index.html"
    },
    "options_ui": {
        "page": "settings\/index.html",
        "open_in_tab": true
    }
}