Pronouns in Profile
A little extension that adds Twitter users' pronouns to their profiles.
Cos'è Pronouns in Profile?
Pronouns in Profile è un'estensione di Chrome sviluppata da Harrison B, e la sua funzione principale è "A little extension that adds Twitter users' pronouns to their profiles.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Pronouns in Profile
Scarica i file di estensione Pronouns in Profile in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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!
Informazioni di Base sull'Estensione
Nome | Pronouns in Profile |
ID | glamhpccofagaiogibiannnbomhjdojp |
URL Ufficiale | https://chromewebstore.google.com/detail/pronouns-in-profile/glamhpccofagaiogibiannnbomhjdojp |
Descrizione | A little extension that adds Twitter users' pronouns to their profiles. |
Dimensione del File | 4.95 MB |
Conteggio Installazioni | 105 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2021-02-28 |
Data di Pubblicazione | 2021-02-10 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Harrison B |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://docs.google.com/document/d/1T7FxIOZMIkPiOtZa1DfHusKQVEr264RztpzPSVjE9JA/edit?usp=sharing |
Lingue Supportate | 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" } } |