Safe Words

Takes out bad words from all your webpages

Что такое Safe Words?

Safe Words - это расширение Chrome, разработанное a young programmer, и его основная функция - "Takes out bad words from all your webpages".

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

screenshot
screenshot

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

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

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

                        The best open source Chrome extension for profanity filtering and censoring!

Tired of seeing stupid YouTube comments?
Want to protect your children from bad words on the Internet?
Don't want to see obscene, foul or vulgar language?

Then this extension is for you!

Using a smart algorithm, the extension can filter/censor out 99% of bad words quite efficiently.

For example:
Asses, asssss => censored
but
assess, firetruck => is not

Works on Facebook, Twitter and YouTube!                    

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

Название Safe Words Safe Words
ID mncnlkabidgflobdapkgmnlikkiilijj
Официальный URL https://chromewebstore.google.com/detail/safe-words/mncnlkabidgflobdapkgmnlikkiilijj
Описание Takes out bad words from all your webpages
Размер файла 19.36 KB
Количество установок 258
Текущая Версия 0.16
Последнее Обновление 2016-06-24
Дата публикации 2016-06-24
Рейтинг 4.27/5 Всего 15 оценок
Разработчик a young programmer
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Safe Words",
    "version": "0.16",
    "description": "Takes out bad words from all your webpages",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "exclude_matches": [],
            "run_at": "document_end",
            "all_frames": true,
            "js": [
                "script.js"
            ]
        }
    ]
}