Swearing Substitution

Replaces common curse words with their softer equivalents

Что такое Swearing Substitution?

Swearing Substitution - это расширение Chrome, разработанное Joshua Jolley, и его основная функция - "Replaces common curse words with their softer equivalents".

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

screenshot

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

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

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

                        ======
Version 0.0.0.8 Change log:
Fixed "Shecky" Idaho (Shelly)
======

Do you like to visit generally wholesome sites that sometimes get ruined by users who swear in their submitted content? Or perhaps you'd rather not view obscenities altogether? If that's the case, Swearing Substitution is your solution.  This extension replaces common English curse words with their softer, more politically correct alternatives. (And less common curse words with the word "cloud").  Unlike other extensions available, this doesn't replace everything with the word censored, or ****. Nothing is hidden, it merely substitutes curse words using words like "freak" or "bum". 

Give it a try! Please leave feedback about additional words you'd like to see blocked or sites you noticed it not working on.  I'll respond as quickly as I can.                    

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

Название Swearing Substitution Swearing Substitution
ID laijlgfcgafbmobgkfkgimjnfnnekfii
Официальный URL https://chrome.google.com/webstore/detail/swearing-substitution/laijlgfcgafbmobgkfkgimjnfnnekfii
Описание Replaces common curse words with their softer equivalents
Размер файла 67.21 KB
Количество установок 157
Текущая Версия 0.0.0.8
Последнее Обновление 2014-07-12
Дата публикации 2014-07-12
Рейтинг 3.67/5 Всего 9 оценок
Разработчик Joshua Jolley
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Swearing Substitution",
    "short_name": "Curse Replacement",
    "description": "Replaces common curse words with their softer equivalents",
    "version": "0.0.0.8",
    "icons": {
        "128": "icon_128.png",
        "48": "icon_48.png",
        "19": "icon_19.png",
        "16": "icon_16.png"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        ""
    ],
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "jquery-1.11.1.min.js",
                "myscript.js"
            ],
            "matches": [
                ""
            ],
            "run_at": "document_end"
        }
    ]
}