Visibilize

Remove all blurred contents and remove all page level overlays

什麼是Visibilize?

Visibilize是由fiddlest開發的Chrome擴展程式,該擴展的主要功能是“Remove all blurred contents and remove all page level overlays”。

擴展截圖

screenshot

下載Visibilize擴展crx文件

下載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 Visibilize
ID cepdgdncnnflfcmahndoefpkljnnebmn
官方網址 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"
    }
}