Image and Video Remover
You will find NO images or videos on the pages you view as long as this extension is activated.
Image and Video Removerคืออะไร?
Image and Video Remover เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Cary Stothart และคุณลักษณะหลักของมันคือ "You will find NO images or videos on the pages you view as long as this extension is activated."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Image and Video Remover
ดาวน์โหลดไฟล์ส่วนขยาย Image and Video Remover ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Removes all images and videos on the websites you view. Useful for viewing websites containing images or videos you find offensive. For example, this extension would be useful for arachnophobic users who want to read about spiders but who do not want to be bombarded with pictures or videos of spiders.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | cceldmeigcfcpamajgnlapepcocegjce |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/image-and-video-remover/cceldmeigcfcpamajgnlapepcocegjce |
คำอธิบาย | You will find NO images or videos on the pages you view as long as this extension is activated. |
ขนาดไฟล์ | 646 KB |
จำนวนการติดตั้ง | 19 |
เวอร์ชันปัจจุบัน | 1.0.0 |
อัปเดตครั้งล่าสุด | 2020-12-24 |
วันที่เผยแพร่ | 2020-12-24 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Cary Stothart |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Image and Video Remover", "version": "1.0.0", "description": "You will find NO images or videos on the pages you view as long as this extension is activated.", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "run_at": "document_start", "css": [ "pageConcealer.css" ], "js": [ "pageConcealer.js" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "removeMedia.js" ], "all_frames": true } ], "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "manifest_version": 2 } |