True Self
Select a new name to display on web pages and become your True Self
What is True Self?
True Self is a Chrome extension developed by taynefemple, and its main feature is "Select a new name to display on web pages and become your True Self".
Extension Screenshots
Download True Self Extension CRX File
Download True Self extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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!
Extension Basic Information
Name | True Self |
ID | jlicaofhpaiikigidgljkklgjpnfojon |
Official URL | https://chromewebstore.google.com/detail/true-self/jlicaofhpaiikigidgljkklgjpnfojon |
Description | Select a new name to display on web pages and become your True Self |
File Size | 33 KB |
Installation Count | 1,332 |
Current Version | 1.2 |
Last Updated | 2022-05-04 |
Publish Date | 2019-06-11 |
Rating | 3.88/5 Total 8 Ratings |
Developer | taynefemple |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } |