Jailbreak the Binary
Removes gender from your view of the web.
Jailbreak the Binary là gì?
Jailbreak the Binary là một tiện ích mở rộng Chrome được phát triển bởi Unknown, và tính năng chính của nó là "Removes gender from your view of the web.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Jailbreak the Binary
Tải xuống các tệp mở rộng Jailbreak the Binary 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
Chrome extension to remove gender from pronouns and other terms throughout web browsing. It also adds a "toggle gender" browser action button that reloads the current tab and pauses/unpauses the extension. This is a fork of [Jailbreak the Patriarchy](https://github.com/DanielleSucher/Jailbreak-the-Patriarchy). Check out that plugin. if you would rather binary genders be swapped. All credit goes to [DanielleSucher](DanielleSucher) for doing the groundwork for this plugin. *** Known issues: - Since "her" can be a possessive or objective pronoun, sometimes “her” should translate to “them”, and sometimes it should translate to “their”. Rather than run every node update through some sort of natural language parser, I set up regular expressions with a set of rules that recognize the most common cases where “her” always or usually should translate to “them”, and then one that translates all remaining instances of “her” to “their” instead. What this ultimately means is that sometimes you’re going to see “their” where you really ought to see “them” instead, or vice-versa. Please submit issues when you find examples that break this - It doesn't include words like "mum", "fellow", "mister", &c, that are often used in entirely non-gendered ways (e.g. "mum's the word", "my fellow americans", "perfume mister"). I haven't thought up a good way around that [yet]. - Apparently there was already a fork called [Jailbreak the Binary](https://chrome.google.com/webstore/detail/mmdlclbfhplmbjfefngjbicmelpbbdnh) but it doesn't seem to exist any more. - It's my personal preference that not all gendered words are replaced. e.g. "mansplain" - Not all gendered words have standard non-gendered equivalents, but I've used words suggested [here](https://nonbinary.wiki/wiki/Gender_neutral_language) to fill in the gaps, e.g. mom / dad -> par (short for parent) - I'm aware the a lot of the translations are a bit silly like replacing all instances of the word male with agender. This is for fun. ## Credits - The original plugin - this list of substitutions http://web.mit.edu/comdor/editguide/style-matters/gender_neutral.html - this article https://nonbinary.wiki/wiki/Gender_neutral_language - the logo is from here: https://www.deviantart.com/pride-flags/art/Agender-Symbol-617960504
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Jailbreak the Binary |
ID | bhflldkbcnidkhofjejdmidnpklichjk |
URL Chính Thức | https://chromewebstore.google.com/detail/jailbreak-the-binary/bhflldkbcnidkhofjejdmidnpklichjk |
Mô tả | Removes gender from your view of the web. |
Kích Thước Tệp | 67.29 KB |
Số Lần Cài Đặt | 337 |
Phiên Bản Hiện Tại | 1.0.5 |
Cập Nhật Lần Cuối | 2018-09-17 |
Ngày Phát Hành | 2018-09-16 |
Đánh Giá | 4.75/5 Tổng số 4 Đánh Giá |
Nhà Phát Triển | Unknown |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/derwentx/Jailbreak-the-Binary |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Jailbreak the Binary", "version": "1.0.5", "manifest_version": 2, "description": "Removes gender from your view of the web.", "background": { "page": "background.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "browser_action": { "default_icon": "icon19.png", "default_title": "Toggle Gender" }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "myscript.js" ], "run_at": "document_end" } ], "content_security_policy": "default-src 'none'; script-src 'self'", "options_page": "options.html" } |