GitHub Mention Highlighter
Highlight user and team mentions on GitHub
GitHub Mention Highlighter क्या है?
GitHub Mention Highlighter Ben Balter द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Highlight user and team mentions on GitHub"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में GitHub Mention Highlighter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 } } |