Gender Filter

An Extension that allows the user to filter gender words ending with '*in' and '*innen'

O que é Gender Filter?

Gender Filter é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "An Extension that allows the user to filter gender words ending with '*in' and '*innen'".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Gender Filter

Baixe arquivos de extensão Gender Filter no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        Gender start endings in the German language is a new concept that seems hard to understand. The Gender Filter Extension comes in really handy; it replaces all gender start endings to its proper word. 
For example: 
- "Meister*innen" would be "Meister"
- "Kandidat*innen" would be "Kandidaten"
and so on.                    

Informações Básicas da Extensão

Nome Gender Filter Gender Filter
ID ehloojohnkegpedpmippnlggpcokmgoj
URL Oficial https://chromewebstore.google.com/detail/gender-filter/ehloojohnkegpedpmippnlggpcokmgoj
Descrição An Extension that allows the user to filter gender words ending with '*in' and '*innen'
Tamanho do Arquivo 12.24 KB
Contagem de Instalações 33
Versão Atual 1.0
Última Atualização 2022-01-22
Data de Publicação 2022-01-22
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor Unknown
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados de
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gender Filter",
    "description": "An Extension that allows the user to filter gender words ending with '*in' and '*innen'",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_popup": "\/html\/popup.html",
        "default_icon": {
            "16": "\/images\/logo-16.png",
            "32": "\/images\/logo-32.png",
            "48": "\/images\/logo-64.png",
            "128": "\/images\/logo-128.png"
        }
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/images\/*"
            ],
            "matches": [
                "https:\/\/*\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "\/css\/pageStyle.css"
            ],
            "js": [
                "\/js\/content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/logo-16.png",
        "32": "\/images\/logo-32.png",
        "48": "\/images\/logo-64.png",
        "128": "\/images\/logo-128.png"
    }
}