NoNoun: Gender Neutral 3rd Person Plug-In

Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.

什么是NoNoun: Gender Neutral 3rd Person Plug-In?

NoNoun: Gender Neutral 3rd Person Plug-In是由mnbeer开发的Chrome扩展程序,该扩展的主要功能是“Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.”。

扩展截图

screenshot

下载NoNoun: Gender Neutral 3rd Person Plug-In扩展crx文件

下载NoNoun: Gender Neutral 3rd Person Plug-In扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension replaces all gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) on a Web page with gender neutral alternatives. [English language only]                    

扩展基本信息

名称 NoNoun: Gender Neutral 3rd Person Plug-In NoNoun: Gender Neutral 3rd Person Plug-In
ID jjdkbacgfkpenoeldjpjojppncekedin
官方URL https://chromewebstore.google.com/detail/nonoun-gender-neutral-3rd/jjdkbacgfkpenoeldjpjojppncekedin
简介 Replace gender specific pronouns (he/she), objects (him/her), and possessives (his/hers) with gender neutral alternatives.
文件大小 64.57 KB
安装次数 249
当前版本 0.0.1.1
更新时间 2018-05-09
上架时间 2018-05-08
评分 5.00/5 共1次评分
开发者 mnbeer
付费类型 free
支持的语言 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "NoNoun: Gender Neutral 3rd Person Plug-In",
    "description": "Replace gender specific pronouns (he\/she), objects (him\/her), and possessives (his\/hers) with gender neutral alternatives.",
    "version": "0.0.1.1",
    "browser_action": {
        "default_icon": "icon16.png",
        "default_popup": "nonoun.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                ""
            ],
            "js": [
                "words.js",
                "common.js",
                "content.js"
            ]
        }
    ]
}