Pronouns in Profile

A little extension that adds Twitter users' pronouns to their profiles.

什么是Pronouns in Profile?

Pronouns in Profile是由Harrison B开发的Chrome扩展程序,该扩展的主要功能是“A little extension that adds Twitter users' pronouns to their profiles.”。

扩展截图

screenshot
screenshot
screenshot

下载Pronouns in Profile扩展crx文件

下载Pronouns in Profile扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension searches a users bio on Twitter for their pronouns. If they have pronouns in their bio it adds them as a new field on their profile. 

This helps to normalize sharing one's pronouns. It's another field on your profile, just like your location or your birthday!                    

扩展基本信息

名称 Pronouns in Profile Pronouns in Profile
ID glamhpccofagaiogibiannnbomhjdojp
官方URL https://chromewebstore.google.com/detail/pronouns-in-profile/glamhpccofagaiogibiannnbomhjdojp
简介 A little extension that adds Twitter users' pronouns to their profiles.
文件大小 4.95 MB
安装次数 105
当前版本 1.0.3
更新时间 2021-02-28
上架时间 2021-02-10
评分 5.00/5 共1次评分
开发者 Harrison B
电子邮箱 [email protected]
付费类型 free
隐私政策页面URL https://docs.google.com/document/d/1T7FxIOZMIkPiOtZa1DfHusKQVEr264RztpzPSVjE9JA/edit?usp=sharing
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pronouns in Profile",
    "description": "A little extension that adds Twitter users' pronouns to their profiles.",
    "version": "1.0.3",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "global.js",
            "check-for-pronoun.js",
            "background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "tabs",
        "https:\/\/twitter.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*"
            ],
            "exclude_globs": [
                "https:\/\/twitter.com\/*\/status\/*",
                "https:\/\/twitter.com\/home",
                "https:\/\/twitter.com\/notifications",
                "https:\/\/twitter.com\/*\/status\/*\/*",
                "https:\/\/twitter.com\/*\/*"
            ],
            "js": [
                "global.js",
                "add-pronoun.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "\/images\/icon16.png",
        "32": "\/images\/icon32.png",
        "48": "\/images\/icon48.png",
        "128": "\/images\/icon128.png"
    }
}