GitHub Mention Highlighter
Highlight user and team mentions on GitHub
Qu'est-ce que GitHub Mention Highlighter ?
GitHub Mention Highlighter est une extension Chrome développée par Ben Balter, et sa fonction principale est "Highlight user and team mentions on GitHub".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension GitHub Mention Highlighter
Téléchargez les fichiers d'extension GitHub Mention Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | GitHub Mention Highlighter |
ID | ojclbekffnkgbacniibdebdihhgenlkp |
URL Officiel | https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp |
Description | Highlight user and team mentions on GitHub |
Taille du Fichier | 201 KB |
Nombre d'Installations | 278 |
Version Actuelle | 0.2.1 |
Dernière Mise à Jour | 2020-02-05 |
Date de Publication | 2020-02-05 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Ben Balter |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/benbalter/github-mention-highlighter |
URL de la Page d'Aide | https://github.com/benbalter/github-mention-highlighter/issues |
Langues Prises en Charge | 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 } } |