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
Eメール [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"
    }
}