NOOT NOOT

Replaces swear words with NOOT NOOT.

Что такое NOOT NOOT?

NOOT NOOT - это расширение Chrome, разработанное anodium, и его основная функция - "Replaces swear words with NOOT NOOT.".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения NOOT NOOT

Скачайте файлы расширений NOOT NOOT в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Exactly what it says on the tin; it replaces swear words with NOOT NOOT. Pretty straightforward.                    

Основная информация о расширении

Название NOOT NOOT NOOT NOOT
ID pefpfonanmllmikkgkcibbmijobflocb
Официальный URL https://chromewebstore.google.com/detail/noot-noot/pefpfonanmllmikkgkcibbmijobflocb
Описание Replaces swear words with NOOT NOOT.
Размер файла 22.27 KB
Количество установок 134
Текущая Версия Chips Release
Последнее Обновление 2016-09-13
Дата публикации 2016-09-13
Рейтинг 4.30/5 Всего 20 оценок
Разработчик anodium
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/anodium/noot-noot
URL страницы помощи https://github.com/anodium/noot-noot/issues
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NOOT NOOT",
    "version": "1.1.0",
    "version_name": "Chips Release",
    "description": "Replaces swear words with NOOT NOOT.",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "author": "Andrea Garcia",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "noot.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "swear.json"
    ]
}