Jailbreak the Patriarchy

Genderswaps your view of the web.

Jailbreak the Patriarchyคืออะไร?

Jailbreak the Patriarchy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Danielle E. Sucher และคุณลักษณะหลักของมันคือ "Genderswaps your view of the web."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jailbreak the Patriarchy

ดาวน์โหลดไฟล์ส่วนขยาย Jailbreak the Patriarchy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Jailbreak the Patriarchy genderswaps the world for you. When it's installed, everything you read in Chrome (except for gmail, so far) loads with pronouns and a reasonably thorough set of other gendered words swapped. For example: "he loved his mother very much" would read as "she loved her father very much", "the patriarchy also hurts men" would read as "the matriarchy also hurts women", that sort of thing. 

This makes reading stuff on the internet a pretty fascinating and eye-opening experience, I must say. What would the world be like if we reversed the way we speak about women and men? Well, now you can find out!

***

Running this extension will not trap you outside the asylum. When you install Jailbreak the Patriarchy, you'll see that there's a new button in the top right corner of your browser. When you click that button, it basically toggles the patriarchy. If Jailbreak the Patriarchy is active when you click, it pauses the extension and reloads your current tab back into reality. If the extension is already paused when you click the button, it unpauses the extension and reloads your current tab back into genderswapped-land. 

It's easy to tell when the extension is paused, because the button in the browser will get a big red OFF tag.

Just to be clear, only your current tab will reload automatically, but the pause/unpause is browser-wide and persists until you toggle the button again. 

Enjoy!

***

UPDATE: As of version 1.0.2, you can go into your extensions and click on 'Options' near Jailbreak if you want to set Jailbreak to turn itself on and off randomly once per day. This will only happen if you go out of your way to turn that option on - by default, you are in complete control and Jailbreak will never turn on unless you click the button. But for those of you who want more random confusion in your lives, the option is now there!

If you have any issues, feel free to email me at [email protected] or (ideally) submit them on Github - https://github.com/DanielleSucher/Jailbreak-the-Patriarchy/issues                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Jailbreak the Patriarchy Jailbreak the Patriarchy
ID fiidcfoaaciclafodoficaofidfencgd
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/jailbreak-the-patriarchy/fiidcfoaaciclafodoficaofidfencgd
คำอธิบาย Genderswaps your view of the web.
ขนาดไฟล์ 23.8 KB
จำนวนการติดตั้ง 3,932
เวอร์ชันปัจจุบัน 1.0.3
อัปเดตครั้งล่าสุด 2014-03-27
วันที่เผยแพร่ 2014-03-27
คะแนน 4.07/5 รวมทั้งหมด 86 คะแนน
ผู้พัฒนา Danielle E. Sucher
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://www.daniellesucher.com/2011/11/jailbreak-the-patriarchy-my-first-chrome-extension/
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jailbreak the Patriarchy",
    "version": "1.0.3",
    "manifest_version": 2,
    "description": "Genderswaps 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 Patriarchy"
    },
    "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"
}