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
官方網址 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"
    }
}