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 |
Eメール | [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 } |