Pronouns in Profile
A little extension that adds Twitter users' pronouns to their profiles.
Pronouns in Profile क्या है?
Pronouns in Profile Harrison B द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A little extension that adds Twitter users' pronouns to their profiles."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Pronouns in Profile एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" } } |