NoNoun: Gender Neutral 3rd Person Plug-In

Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.

Co to jest NoNoun: Gender Neutral 3rd Person Plug-In?

NoNoun: Gender Neutral 3rd Person Plug-In to rozszerzenie Chrome opracowane przez mnbeer, a jego główną funkcją jest „Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia NoNoun: Gender Neutral 3rd Person Plug-In

Pobierz pliki rozszerzeń NoNoun: Gender Neutral 3rd Person Plug-In 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

                        This extension replaces all gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) on a Web page with gender neutral alternatives. [English language only]                    

Podstawowe informacje o rozszerzeniu

Nazwa NoNoun: Gender Neutral 3rd Person Plug-In NoNoun: Gender Neutral 3rd Person Plug-In
ID jjdkbacgfkpenoeldjpjojppncekedin
Oficjalny URL https://chromewebstore.google.com/detail/nonoun-gender-neutral-3rd/jjdkbacgfkpenoeldjpjojppncekedin
Opis Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.
Rozmiar pliku 64.57 KB
Liczba instalacji 249
Aktualna Wersja 0.0.1.1
Ostatnia Aktualizacja 2018-05-09
Data Publikacji 2018-05-08
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper mnbeer
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": "NoNoun: Gender Neutral 3rd Person Plug-In",
    "description": "Replace gender specific pronouns (he\/she), objects (him\/her), and possessives (his\/hers) with gender neutral alternatives.",
    "version": "0.0.1.1",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "nonoun.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "words.js",
                "common.js",
                "content.js"
            ]
        }
    ]
}