GitHub Mention Highlighter
Highlight user and team mentions on GitHub
GitHub Mention Highlighterとは何ですか?
GitHub Mention HighlighterはBen Balterによって開発されたChromeの拡張機能で、その主な機能は「Highlight user and team mentions on GitHub」です。
拡張機能のスクリーンショット
GitHub Mention Highlighter拡張機能のCRXファイルをダウンロード
GitHub Mention Highlighter拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This Chrome extension automatically highlights any time you are mentioned on a GitHub issue or pull request thread by highlighting your username, any team your a member of, and the border of any containing comment.
拡張機能の基本情報
名前 | GitHub Mention Highlighter |
ID | ojclbekffnkgbacniibdebdihhgenlkp |
公式URL | https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp |
説明 | Highlight user and team mentions on GitHub |
ファイルサイズ | 201 KB |
インストール数 | 278 |
現在のバージョン | 0.2.1 |
最終更新日 | 2020-02-05 |
公開日 | 2020-02-05 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | Ben Balter |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/benbalter/github-mention-highlighter |
ヘルプページのURL | https://github.com/benbalter/github-mention-highlighter/issues |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Mention Highlighter", "version": "0.2.1", "description": "Highlight user and team mentions on GitHub", "permissions": [ "https:\/\/github.com\/*", "https:\/\/*.githubapp.com\/*", "https:\/\/mail.google.com\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/*.githubapp.com\/*", "https:\/\/mail.google.com\/*" ], "js": [ "vendor\/jquery\/dist\/jquery.js", "dist\/script.js" ], "css": [ "dist\/style.css" ] } ], "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "manifest_version": 2, "options_page": "dist\/options.html", "options_ui": { "page": "dist\/options.html", "chrome_style": true } } |