Turdifier

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

Was ist Turdifier?

Turdifier ist eine Chrome-Erweiterung, die von http://antoine.work entwickelt wurde, und ihr Hauptmerkmal ist "Let you select some words that will be replaced by the poo emoji on every pages".

Erweiterungsscreenshots

screenshot
screenshot

Turdifier-Erweiterungs-CRX-Datei herunterladen

Laden Sie Turdifier-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

                        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]                    

Grundlegende Informationen zur Erweiterung

Name Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
Offizielle URL https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
Beschreibung Let you select some words that will be replaced by the poo emoji on every pages
Dateigröße 28.17 KB
Installationsanzahl 58
Aktuelle Version 1.0
Letztes Update 2017-11-02
Veröffentlichungsdatum 2017-11-02
Bewertung 4.00/5 Insgesamt 8 Bewertungen
Entwickler http://antoine.work
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://lab.antoine.work/turdifier/
Unterstützte Sprachen 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
}