True Self
Select a new name to display on web pages and become your True Self
Co to jest True Self?
True Self to rozszerzenie Chrome opracowane przez taynefemple, a jego główną funkcją jest „Select a new name to display on web pages and become your True Self”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia True Self
Pobierz pliki rozszerzeń True Self w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
If a person who is transgender hasn't changed their name legally, they see their given name everywhere they go. True Self allows you to substitute your given name with your chosen name on any web page you visit. Or you can test out a new name! Just type your old name in the 'Given Name' field and your new name in the 'True Self' field. Then click apply to refresh. To erase the settings, just turn the slider off. Unless turned off, settings will save across browsing sessions. Welcome home! You are your True Self!
Podstawowe informacje o rozszerzeniu
Nazwa | True Self |
ID | jlicaofhpaiikigidgljkklgjpnfojon |
Oficjalny URL | https://chromewebstore.google.com/detail/true-self/jlicaofhpaiikigidgljkklgjpnfojon |
Opis | Select a new name to display on web pages and become your True Self |
Rozmiar pliku | 33 KB |
Liczba instalacji | 1,332 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2022-05-04 |
Data Publikacji | 2019-06-11 |
Ocena | 3.88/5 Łącznie 8 Oceny |
Deweloper | taynefemple |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "True Self", "version": "1.2", "description": "Select a new name to display on web pages and become your True Self", "background": { "scripts": [ "background.js" ], "persistent": true }, "permissions": [ "storage" ], "browser_action": { "default_icon": { "128": "images\/disabledIcon.png" }, "default_popup": "popup.html", "default_title": "trueSelf" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentScript.js" ], "run_at": "document_end" } ], "icons": { "16": "images\/flagSmall.png", "48": "images\/flagMedium.png", "128": "images\/flagLarge.png" } } |