Blur It Out
A simple extension that blurs out words you don't like
Blur It Out क्या है?
Blur It Out Procrastinating Student द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that blurs out words you don't like"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Blur It Out एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | Blur It Out |
ID | aiocpnokjcmpelmlmekbjjblcompckhe |
आधिकारिक URL | https://chromewebstore.google.com/detail/blur-it-out/aiocpnokjcmpelmlmekbjjblcompckhe |
विवरण | A simple extension that blurs out words you don't like |
फ़ाइल का आकार | 49.38 KB |
स्थापना संख्या | 5,337 |
वर्तमान संस्करण | 1.2 |
अंतिम अपडेट | 2019-09-27 |
प्रकाशन तिथि | 2019-09-27 |
रेटिंग | 4.67/5 कुल 15 रेटिंग्स |
डेवलपर | Procrastinating Student |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | 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 } |