True Self
Select a new name to display on web pages and become your True Self
True Self là gì?
True Self là một tiện ích mở rộng Chrome được phát triển bởi taynefemple, và tính năng chính của nó là "Select a new name to display on web pages and become your True Self".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng True Self
Tải xuống các tệp mở rộng True Self 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
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!
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | True Self |
ID | jlicaofhpaiikigidgljkklgjpnfojon |
URL Chính Thức | https://chromewebstore.google.com/detail/true-self/jlicaofhpaiikigidgljkklgjpnfojon |
Mô tả | Select a new name to display on web pages and become your True Self |
Kích Thước Tệp | 33 KB |
Số Lần Cài Đặt | 1,332 |
Phiên Bản Hiện Tại | 1.2 |
Cập Nhật Lần Cuối | 2022-05-04 |
Ngày Phát Hành | 2019-06-11 |
Đánh Giá | 3.88/5 Tổng số 8 Đánh Giá |
Nhà Phát Triển | taynefemple |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |