Easy Image Control

Block images, videos, audio connections, hide title, hide favicon.

Easy Image Controlคืออะไร?

Easy Image Control เป็นส่วนขยายของ Chrome ที่พัฒนาโดย antwhere.com และคุณลักษณะหลักของมันคือ "Block images, videos, audio connections, hide title, hide favicon."

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

screenshot
screenshot

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

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

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

                        Block images, videos, audio connections, hide title, hide favicon.
Save network bandwidth and data traffic.

✅ open-source: https://bitbucket.org/antwhere/easy_image_control/
----------

Update history:
4.0: Support for pending navigation
3.9: Improve performance
3.8: Block videos and audio connections
3.7: Improve performance
3.6: Improve performance
3.5: Fixed the exclusion list issue in the previous version
3.4: Improve performance
3.3: Add Import/Export Settings feature
3.2: Fine-tune the UI
3.1: Improve performance
3.0: Improve performance
2.9: Add switch symbol
2.8: Improve performance
2.7: Add a reserved cache feature. Modify the UI.
2.6: Update description
2.5: Fixed some bugs
2.4:
    * Rebuild code!
    * New design!
    * Installation package is less than 30KB!
    * Faster! More stable! More savings in computer performance!
2.3: Icon support retina display
2.2: Modify the extension icon
2.1:
    * Add an exclusion list, now you can add websites that need to display pictures to the exclusion list, the operation is simple and easy to use
    * Fixed some bugs

----------

Privacy Policy:
We do not collect any information from the first version until now and forever!
----------

The initial version began in September 2014.
Feedback E-mail: [email protected]
Official Website: www.antwhere.com                    

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

ชื่อ Easy Image Control Easy Image Control
ID clallboofkppmmmhdbjhamfhlhpchbij
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/easy-image-control/clallboofkppmmmhdbjhamfhlhpchbij
คำอธิบาย Block images, videos, audio connections, hide title, hide favicon.
ขนาดไฟล์ 20.15 KB
จำนวนการติดตั้ง 2,278
เวอร์ชันปัจจุบัน 4.0
อัปเดตครั้งล่าสุด 2021-04-13
วันที่เผยแพร่ 2020-07-03
คะแนน 4.37/5 รวมทั้งหมด 19 คะแนน
ผู้พัฒนา antwhere.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Easy Image Control",
    "description": "Block images, videos, audio connections, hide title, hide favicon.",
    "version": "4.0",
    "permissions": [
        "",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "browsingData"
    ],
    "background": {
        "page": "background.html"
    },
    "options_page": "exclude.html",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/common.js",
                "js\/contentscript.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "icons\/icon-128.png",
        "48": "icons\/icon-48.png",
        "16": "icons\/icon-16.png"
    },
    "browser_action": {
        "default_icon": "icons\/icon-128.png",
        "default_popup": "popup.html"
    }
}