Turdifier

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

Τι είναι το Turdifier;

Το Turdifier είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον http://antoine.work, και η κύρια λειτουργία του είναι "Let you select some words that will be replaced by the poo emoji on every pages".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Turdifier

Λήψη αρχείων επέκτασης Turdifier σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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]                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
Επίσημο URL https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
Περιγραφή Let you select some words that will be replaced by the poo emoji on every pages
Μέγεθος Αρχείου 28.17 KB
Αριθμός Εγκαταστάσεων 58
Τρέχουσα Έκδοση 1.0
Τελευταία Ενημέρωση 2017-11-02
Ημερομηνία Δημοσίευσης 2017-11-02
Αξιολόγηση 4.00/5 Συνολικά 8 Αξιολογήσεις
Προγραμματιστής http://antoine.work
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://lab.antoine.work/turdifier/
Υποστηριζόμενες Γλώσσες 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
}