Fast Image Blocker

Blocks all images and visual content on desired websites.

什麼是Fast Image Blocker?

Fast Image Blocker是由chYer開發的Chrome擴展程式,該擴展的主要功能是“Blocks all images and visual content on desired websites.”。

擴展截圖

screenshot
screenshot

下載Fast Image Blocker擴展crx文件

下載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
官方網址 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"
    }
}