Visibilize
Remove all blurred contents and remove all page level overlays
Visibilizeคืออะไร?
Visibilize เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fiddlest และคุณลักษณะหลักของมันคือ "Remove all blurred contents and remove all page level overlays"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Visibilize
ดาวน์โหลดไฟล์ส่วนขยาย Visibilize ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
A growing number of websites use the blur effect to hide the information that shows only logged-in users and also show full page overlay with the sign-up popup, which makes the site unusable. However, people want to quickly check some information and leave instead of going through the sign-up process. The developers can view and remove the elements on the page by developer tools. However, most people can bypass. This extension allows you to remove the blurry effect and remove full page popups. However, this extension cannot show data if they use fake data under the blurred item.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Visibilize |
ID | cepdgdncnnflfcmahndoefpkljnnebmn |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/visibilize/cepdgdncnnflfcmahndoefpkljnnebmn |
คำอธิบาย | Remove all blurred contents and remove all page level overlays |
ขนาดไฟล์ | 172 KB |
จำนวนการติดตั้ง | 1,190 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2021-12-23 |
วันที่เผยแพร่ | 2021-12-22 |
คะแนน | 5.00/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | fiddlest |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Visibilize", "description": "Remove all blurred contents and remove all page level overlays", "version": "1.0", "manifest_version": 3, "action": { "default_popup": "index.html", "default_title": "Reveal blurry contents and hide page overlays" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ ".\/static\/js\/content.js" ] } ], "permissions": [ "activeTab" ], "icons": { "16": "magic-wand-16.png", "48": "magic-wand-48.png", "128": "magic-wand-128.png" } } |