Visibilize

Remove all blurred contents and remove all page level overlays

Visibilize là gì?

Visibilize là một tiện ích mở rộng Chrome được phát triển bởi fiddlest, và tính năng chính của nó là "Remove all blurred contents and remove all page level overlays".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Visibilize

Tải xuống các tệp mở rộng Visibilize dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Visibilize Visibilize
ID cepdgdncnnflfcmahndoefpkljnnebmn
URL Chính Thức https://chromewebstore.google.com/detail/visibilize/cepdgdncnnflfcmahndoefpkljnnebmn
Mô tả Remove all blurred contents and remove all page level overlays
Kích Thước Tệp 172 KB
Số Lần Cài Đặt 1,190
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-12-23
Ngày Phát Hành 2021-12-22
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển fiddlest
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}