GitHub Real Names
Use real names on GitHub
What is GitHub Real Names?
GitHub Real Names is a Chrome extension developed by ForbesLindesay, and its main feature is "Use real names on GitHub".
Extension Screenshots
Download GitHub Real Names Extension CRX File
Download GitHub Real Names 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
Adds a button to let you toggle real names vs. usernames in GitHub.
Extension Basic Information
Name | GitHub Real Names |
ID | edfnfekndkopmlejjmlplpceflfldoae |
Official URL | https://chromewebstore.google.com/detail/github-real-names/edfnfekndkopmlejjmlplpceflfldoae |
Description | Use real names on GitHub |
File Size | 38.66 KB |
Installation Count | 633 |
Current Version | 1.3.1 |
Last Updated | 2020-08-19 |
Publish Date | 2018-03-26 |
Rating | 3.60/5 Total 10 Ratings |
Developer | ForbesLindesay |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |