Swear Be Gone

Filters swear/bad words!

Co to jest Swear Be Gone?

Swear Be Gone to rozszerzenie Chrome opracowane przez Kabir Singh, a jego główną funkcją jest „Filters swear/bad words!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Swear Be Gone

Pobierz pliki rozszerzeń Swear Be Gone 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

                        Filters out most of the popular swear words. You don't have to worry about kids stumbling upon them!

Version: 1.0.1
- Updated censored words so that each letter represent a "*".                    

Podstawowe informacje o rozszerzeniu

Nazwa Swear Be Gone Swear Be Gone
ID hbicccdaibeakimkhmgoglhbodhofpnb
Oficjalny URL https://chromewebstore.google.com/detail/swear-be-gone/hbicccdaibeakimkhmgoglhbodhofpnb
Opis Filters swear/bad words!
Rozmiar pliku 11.25 KB
Liczba instalacji 78
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2017-03-25
Data Publikacji 2017-03-25
Ocena 2.25/5 Łącznie 4 Oceny
Deweloper Kabir Singh
Typ Płatności free
Obsługiwane Języki en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Swear Be Gone",
    "version": "1.0.1",
    "description": "Filters swear\/bad words!",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Click here!"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}