Pronouns in Profile

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

Pronouns in Profileคืออะไร?

Pronouns in Profile เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Harrison B และคุณลักษณะหลักของมันคือ "A little extension that adds Twitter users' pronouns to their profiles."

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Pronouns in Profile

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}