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 |
官方網址 | 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" } } |