Visibilize
Remove all blurred contents and remove all page level overlays
Was ist Visibilize?
Visibilize ist eine Chrome-Erweiterung, die von fiddlest entwickelt wurde, und ihr Hauptmerkmal ist "Remove all blurred contents and remove all page level overlays".
Erweiterungsscreenshots
Visibilize-Erweiterungs-CRX-Datei herunterladen
Laden Sie Visibilize-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Visibilize |
ID | cepdgdncnnflfcmahndoefpkljnnebmn |
Offizielle URL | https://chromewebstore.google.com/detail/visibilize/cepdgdncnnflfcmahndoefpkljnnebmn |
Beschreibung | Remove all blurred contents and remove all page level overlays |
Dateigröße | 172 KB |
Installationsanzahl | 1,190 |
Aktuelle Version | 1.0 |
Letztes Update | 2021-12-23 |
Veröffentlichungsdatum | 2021-12-22 |
Bewertung | 5.00/5 Insgesamt 2 Bewertungen |
Entwickler | fiddlest |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" } } |