Brandacted
This extension redacts brand names from most web content, unless I messed something up.
What is Brandacted?
Brandacted is a Chrome extension developed by joeveix, and its main feature is "This extension redacts brand names from most web content, unless I messed something up.".
Extension Screenshots
Download Brandacted Extension CRX File
Download Brandacted extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Brandacted takes a list of ~200 brands and replaces them with █████████████ because ██████████ and ███████████████████████████.
Extension Basic Information
Name | |
ID | oaeccdidhldlcoepbmaohcdflaeaokjh |
Official URL | https://chromewebstore.google.com/detail/brandacted/oaeccdidhldlcoepbmaohcdflaeaokjh |
Description | This extension redacts brand names from most web content, unless I messed something up. |
File Size | 23.32 KB |
Installation Count | 14 |
Current Version | 1.0 |
Last Updated | 2015-06-18 |
Publish Date | 2015-06-18 |
Developer | joeveix |
Payment Type | free |
Extension Website | http://www.twitter.com/joeveix |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Brandacted", "description": "This extension redacts brand names from most web content, unless I messed something up.", "version": "1.0", "browser_action": { "default_icon": "icon16.png", "default_title": "Click here to redact brands." }, "icons": { "16": "icon16.png", "32": "icon32.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content_script.js" ], "run_at": "document_end" } ] } |