GitHub Mention Highlighter
Highlight user and team mentions on GitHub
GitHub Mention Highlighterคืออะไร?
GitHub Mention Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ben Balter และคุณลักษณะหลักของมันคือ "Highlight user and team mentions on GitHub"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย GitHub Mention Highlighter
ดาวน์โหลดไฟล์ส่วนขยาย 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 } } |