GitHub Real Names
Use real names on GitHub
什么是GitHub Real Names?
GitHub Real Names是由ForbesLindesay开发的Chrome扩展程序,该扩展的主要功能是“Use real names on GitHub”。
扩展截图
下载GitHub Real Names扩展crx文件
下载GitHub Real Names扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a button to let you toggle real names vs. usernames in GitHub.
扩展基本信息
名称 | GitHub Real Names |
ID | edfnfekndkopmlejjmlplpceflfldoae |
官方URL | https://chromewebstore.google.com/detail/github-real-names/edfnfekndkopmlejjmlplpceflfldoae |
简介 | Use real names on GitHub |
文件大小 | 38.66 KB |
安装次数 | 633 |
当前版本 | 1.3.1 |
更新时间 | 2020-08-19 |
上架时间 | 2018-03-26 |
评分 | 3.60/5 共10次评分 |
开发者 | ForbesLindesay |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Real Names", "description": "Use real names on GitHub", "icons": { "16": "icon.png", "48": "icon.png", "128": "icon.png" }, "version": "1.3.1", "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png", "default_title": "Toggle using real GitHub real names" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "manifest_version": 2 } |