True Self
Select a new name to display on web pages and become your True Self
什么是True Self?
True Self是由taynefemple开发的Chrome扩展程序,该扩展的主要功能是“Select a new name to display on web pages and become your True Self”。
扩展截图
下载True Self扩展crx文件
下载True Self扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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!
扩展基本信息
名称 | True Self |
ID | jlicaofhpaiikigidgljkklgjpnfojon |
官方URL | https://chromewebstore.google.com/detail/true-self/jlicaofhpaiikigidgljkklgjpnfojon |
简介 | Select a new name to display on web pages and become your True Self |
文件大小 | 33 KB |
安装次数 | 1,332 |
当前版本 | 1.2 |
更新时间 | 2022-05-04 |
上架时间 | 2019-06-11 |
评分 | 3.88/5 共8次评分 |
开发者 | taynefemple |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | 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" } } |