Turdifier

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

Qu'est-ce que Turdifier ?

Turdifier est une extension Chrome développée par http://antoine.work, et sa fonction principale est "Let you select some words that will be replaced by the poo emoji on every pages".

Captures d'Écran de l'Extension

screenshot
screenshot

Télécharger le fichier CRX de l'extension Turdifier

Téléchargez les fichiers d'extension Turdifier au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
URL Officiel 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
Taille du Fichier 28.17 KB
Nombre d'Installations 58
Version Actuelle 1.0
Dernière Mise à Jour 2017-11-02
Date de Publication 2017-11-02
Évaluation 4.00/5 Total 8 Évaluations
Développeur http://antoine.work
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://lab.antoine.work/turdifier/
Langues Prises en Charge 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
}