GitHub Mention Highlighter

Highlight user and team mentions on GitHub

Hvad er GitHub Mention Highlighter?

GitHub Mention Highlighter er en Chrome-udvidelse udviklet af Ben Balter, og dens hovedfunktion er "Highlight user and team mentions on GitHub".

Udvidelsesskærmbilleder

screenshot

Download GitHub Mention Highlighter-udvidelses-CRX-fil

Download GitHub Mention Highlighter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn GitHub Mention Highlighter GitHub Mention Highlighter
ID ojclbekffnkgbacniibdebdihhgenlkp
Officiel URL https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp
Beskrivelse Highlight user and team mentions on GitHub
Filstørrelse 201 KB
Antal Installationer 278
Nuværende Version 0.2.1
Senest Opdateret 2020-02-05
Udgivelsesdato 2020-02-05
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler Ben Balter
Betalingsmetode free
Udvidelseswebsted https://github.com/benbalter/github-mention-highlighter
Hjælpeside-URL https://github.com/benbalter/github-mention-highlighter/issues
Understøttede Sprog 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
    }
}