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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}