Missed Gender
Creates a more comfortable experience for those in the trans community by replacing a user's "deadname" with a name they identify as
Что такое Missed Gender?
Missed Gender - это расширение Chrome, разработанное axprin, и его основная функция - "Creates a more comfortable experience for those in the trans community by replacing a user's "deadname" with a name they identify as".
Снимки экрана расширения
Скачать файл CRX расширения Missed Gender
Скачайте файлы расширений Missed Gender в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Missed Gender is an extension that allows users to replace their “deadname” with the name they identify as. By using simple word replacement, the extension is able to identify and replace names, helping to create a more comfortable online experience for those in the trans community.
Основная информация о расширении
Название | Missed Gender |
ID | dcpnbdkljbekmoamlbcidojnccbhlhin |
Официальный URL | https://chromewebstore.google.com/detail/missed-gender/dcpnbdkljbekmoamlbcidojnccbhlhin |
Описание | Creates a more comfortable experience for those in the trans community by replacing a user's "deadname" with a name they identify as |
Размер файла | 51.5 KB |
Количество установок | 421 |
Текущая Версия | 1.0 |
Последнее Обновление | 2017-06-14 |
Дата публикации | 2017-06-13 |
Рейтинг | 4.00/5 Всего 4 оценок |
Разработчик | axprin |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Missed Gender", "description": "Creates a more comfortable experience for those in the trans community by replacing a user's \"deadname\" with a name they identify as", "version": "1.0", "browser_action": { "default_popup": "options.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "icons": { "16": "missed_gender_icon-16x16.png", "48": "missed_gender_icon-48x48.png", "128": "missed_gender_icon-128x128.png" }, "permissions": [ "storage" ] } |