Emoji Blocker
Removes emojis
What is Emoji Blocker?
Emoji Blocker is a Chrome extension developed by deathtoemojis, and its main feature is "Removes emojis".
Extension Screenshots
Download Emoji Blocker Extension CRX File
Download Emoji Blocker 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
Removes the most common emojis from text and some images (experimental). Now features simple settings and also counts how many emojis were blocked.
Extension Basic Information
Name | Emoji Blocker |
ID | eimknojlmcfpmofldcdiaddfimjchmcj |
Official URL | https://chromewebstore.google.com/detail/emoji-blocker/eimknojlmcfpmofldcdiaddfimjchmcj |
Description | Removes emojis |
File Size | 10.1 KB |
Installation Count | 379 |
Current Version | 1.1 |
Last Updated | 2021-05-06 |
Publish Date | 2020-05-21 |
Rating | 4.88/5 Total 17 Ratings |
Developer | deathtoemojis |
[email protected] | |
Payment Type | free |
Supported Languages | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Emoji Blocker", "version": "1.1", "description": "Removes emojis", "icons": { "128": "128.png" }, "content_scripts": [ { "js": [ "content.js" ], "matches": [ "https:\/\/*\/*", "http:\/\/*\/*", "file:\/\/*" ] } ], "action": { "default_title": "Emoji Blocker", "default_popup": "popup.html" }, "permissions": [ "tabs", "activeTab", "storage" ], "storage": { "managed_schema": "storage_schema.json" } } |