Turdifier

Let you select some words that will be replaced by the poo emoji on every pages

What is Turdifier?

Turdifier is a Chrome extension developed by http://antoine.work, and its main feature is "Let you select some words that will be replaced by the poo emoji on every pages".

Extension Screenshots

screenshot
screenshot

Download Turdifier Extension CRX File

Download Turdifier 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

                        This extension let you choose a list of words that will be replaced by the "pile of poo" unicode character. The original font size of the word will be unchanged.

It also replace the choosen words in page title but might produce weird characters on old OS.

Found a bug ? need a feature ? Please send me a mail at [email protected]                    

Extension Basic Information

Name Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
Official URL https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
Description Let you select some words that will be replaced by the poo emoji on every pages
File Size 28.17 KB
Installation Count 58
Current Version 1.0
Last Updated 2017-11-02
Publish Date 2017-11-02
Rating 4.00/5 Total 8 Ratings
Developer http://antoine.work
Email [email protected]
Payment Type free
Extension Website https://lab.antoine.work/turdifier/
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Turdifier",
    "short_name": "Turdifier",
    "description": "Let you select some words that will be replaced by the poo emoji on every pages",
    "version": "1.0",
    "icons": {
        "128": "icon_128.png"
    },
    "author": "Antoine Guillien",
    "permissions": [
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*",
        "storage"
    ],
    "browser_action": {
        "default_title": "Turdify",
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "popup.js"
        ],
        "persistent": false
    },
    "manifest_version": 2
}