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
}