Turdifier

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

Co to jest Turdifier?

Turdifier to rozszerzenie Chrome opracowane przez http://antoine.work, a jego główną funkcją jest „Let you select some words that will be replaced by the poo emoji on every pages”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia Turdifier

Pobierz pliki rozszerzeń Turdifier w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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]                    

Podstawowe informacje o rozszerzeniu

Nazwa Turdifier Turdifier
ID pacfpdfkogneijkijmgjhdfghhfklbno
Oficjalny URL https://chrome.google.com/webstore/detail/turdifier/pacfpdfkogneijkijmgjhdfghhfklbno
Opis Let you select some words that will be replaced by the poo emoji on every pages
Rozmiar pliku 28.17 KB
Liczba instalacji 58
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2017-11-02
Data Publikacji 2017-11-02
Ocena 4.00/5 Łącznie 8 Oceny
Deweloper http://antoine.work
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://lab.antoine.work/turdifier/
Obsługiwane Języki 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
}