Blur It Out
A simple extension that blurs out words you don't like
Was ist Blur It Out?
Blur It Out ist eine Chrome-Erweiterung, die von Procrastinating Student entwickelt wurde, und ihr Hauptmerkmal ist "A simple extension that blurs out words you don't like".
Erweiterungsscreenshots
Blur It Out-Erweiterungs-CRX-Datei herunterladen
Laden Sie Blur It Out-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
Blurs our any text containing any user-specified blacklisted words. Mouseover the blurred lines to show the text.
Update in Version 1.2:
- You can now toggle whether the blur goes away on mouseover.
Updates in Version 1.1:
- Button to toggle blurring
- Blurs entire object in feed usually now Grundlegende Informationen zur Erweiterung
| Name | |
| ID | aiocpnokjcmpelmlmekbjjblcompckhe |
| Offizielle URL | https://chromewebstore.google.com/detail/blur-it-out/aiocpnokjcmpelmlmekbjjblcompckhe |
| Beschreibung | A simple extension that blurs out words you don't like |
| Dateigröße | 49.38 KB |
| Installationsanzahl | 5,337 |
| Aktuelle Version | 1.2 |
| Letztes Update | 2019-09-27 |
| Veröffentlichungsdatum | 2019-09-27 |
| Bewertung | 4.67/5 Insgesamt 15 Bewertungen |
| Entwickler | Procrastinating Student |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Blur It Out",
"description": "A simple extension that blurs out words you don't like",
"version": "1.2",
"permissions": [
"storage",
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/*\/*",
"http:\/\/*\/*"
],
"css": [
"mystyles.css"
],
"js": [
"third-party\/jquery-1.12.0.min.js",
"myscript.js"
],
"run_at": "document_end"
}
],
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "images\/icon128.png"
},
"browser_action": {
"default_icon": {
"19": "images\/icon19.png",
"38": "images\/icon38.png"
},
"default_title": "Blur It Out Settings",
"default_popup": "browser_action.html"
},
"manifest_version": 2
} | |