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. 扩展基本信息
| 名称 | |
| 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
}
} | |