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 |
| 官方網址 | 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
}
} | |