Gender Filter
An Extension that allows the user to filter gender words ending with '*in' and '*innen'
Τι είναι το Gender Filter;
Το Gender Filter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Unknown, και η κύρια λειτουργία του είναι "An Extension that allows the user to filter gender words ending with '*in' and '*innen'".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Gender Filter
Λήψη αρχείων επέκτασης Gender Filter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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.
Βασικές Πληροφορίες Επέκτασης
Όνομα | Gender Filter |
ID | ehloojohnkegpedpmippnlggpcokmgoj |
Επίσημο URL | https://chromewebstore.google.com/detail/gender-filter/ehloojohnkegpedpmippnlggpcokmgoj |
Περιγραφή | An Extension that allows the user to filter gender words ending with '*in' and '*innen' |
Μέγεθος Αρχείου | 12.24 KB |
Αριθμός Εγκαταστάσεων | 33 |
Τρέχουσα Έκδοση | 1.0 |
Τελευταία Ενημέρωση | 2022-01-22 |
Ημερομηνία Δημοσίευσης | 2022-01-22 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | Unknown |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |