Fast Image Blocker

Blocks all images and visual content on desired websites.

Fast Image Blockerคืออะไร?

Fast Image Blocker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย chYer และคุณลักษณะหลักของมันคือ "Blocks all images and visual content on desired websites."

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

screenshot
screenshot

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

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

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

                        Fast Image Blocker lets you block all images and visual elements. You can allow a page to show images by adding it to the whitelist. Some websites are added by default, but you can add or remove items at any time.

Few features:
1. Allows you to block all image contents (including objects) on all webpages.
2. Easily switch the extension ON or OFF from the toolbar popup interface.
3. Add or remove websites to the whitelist from the toolbar popup.

To report bugs, please visit the addon's homepage (https://mybrowseraddon.com/image-blocker.html) and fill out the bug report form.                    

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

ชื่อ Fast Image Blocker Fast Image Blocker
ID khgnndhdnkpmlflndgobodbhgheaegon
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fast-image-blocker/khgnndhdnkpmlflndgobodbhgheaegon
คำอธิบาย Blocks all images and visual content on desired websites.
ขนาดไฟล์ 54.86 KB
จำนวนการติดตั้ง 7,346
เวอร์ชันปัจจุบัน 0.2.3
อัปเดตครั้งล่าสุด 2023-02-07
วันที่เผยแพร่ 2018-09-22
คะแนน 3.87/5 รวมทั้งหมด 30 คะแนน
ผู้พัฒนา chYer
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://mybrowseraddon.com/image-blocker.html
URL หน้าช่วยเหลือ https://mybrowseraddon.com/image-blocker.html
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "0.2.3",
    "manifest_version": 3,
    "name": "Fast Image Blocker",
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/mybrowseraddon.com\/image-blocker.html",
    "description": "Blocks all images and visual content on desired websites.",
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "declarativeNetRequest"
    ],
    "action": {
        "default_title": "Fast Image Blocker",
        "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": [
        {
            "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"
    }
}