Pronouns in Profile

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

Pronouns in Profile là gì?

Pronouns in Profile là một tiện ích mở rộng Chrome được phát triển bởi Harrison B, và tính năng chính của nó là "A little extension that adds Twitter users' pronouns to their profiles.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Pronouns in Profile

Tải xuống các tệp mở rộng Pronouns in Profile dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Pronouns in Profile Pronouns in Profile
ID glamhpccofagaiogibiannnbomhjdojp
URL Chính Thức https://chromewebstore.google.com/detail/pronouns-in-profile/glamhpccofagaiogibiannnbomhjdojp
Mô tả A little extension that adds Twitter users' pronouns to their profiles.
Kích Thước Tệp 4.95 MB
Số Lần Cài Đặt 105
Phiên Bản Hiện Tại 1.0.3
Cập Nhật Lần Cuối 2021-02-28
Ngày Phát Hành 2021-02-10
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Harrison B
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://docs.google.com/document/d/1T7FxIOZMIkPiOtZa1DfHusKQVEr264RztpzPSVjE9JA/edit?usp=sharing
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}