Gender Neutralize

De-gender language on the web

Gender Neutralize là gì?

Gender Neutralize là một tiện ích mở rộng Chrome được phát triển bởi soph-iest, và tính năng chính của nó là "De-gender language on the web".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Gender Neutralize

Tải xuống các tệp mở rộng Gender Neutralize dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        Extension to turn unnecessarily gendered words into their gender-neutral alternatives across the web. Currently covers traditional male and female pronouns, relational titles (e.g. "boyfriend", "daughter"), professional and occupational titles (e.g. "Congressman"), and more.

Options to toggle changing of personal pronouns on or off, as well as inputting a substitute for "dude", "guys", and other slang-based terms.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Gender Neutralize Gender Neutralize
ID iekijanpfmnhhpkabojigmglmmfgknoa
URL Chính Thức https://chromewebstore.google.com/detail/gender-neutralize/iekijanpfmnhhpkabojigmglmmfgknoa
Mô tả De-gender language on the web
Kích Thước Tệp 43.21 KB
Số Lần Cài Đặt 294
Phiên Bản Hiện Tại 3.2.2
Cập Nhật Lần Cuối 2021-12-14
Ngày Phát Hành 2018-07-14
Đánh Giá 4.00/5 Tổng số 6 Đánh Giá
Nhà Phát Triển soph-iest
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/amity/gender-neutralize
URL Trang Trợ Giúp https://github.com/amity/gender-neutralize
URL Trang Chính Sách Bảo Mật https://github.com/soph-iest/gender-neutralize
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Gender Neutralize",
    "short_name": "De-Gender",
    "version": "3.2.2",
    "author": "Sophie Debs",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "replacement.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "description": "De-gender language on the web",
    "icons": {
        "128": "img\/icon128.png",
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png"
    },
    "manifest_version": 2,
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    }
}