GitHub Mention Highlighter

Highlight user and team mentions on GitHub

Co to jest GitHub Mention Highlighter?

GitHub Mention Highlighter to rozszerzenie Chrome opracowane przez Ben Balter, a jego główną funkcją jest „Highlight user and team mentions on GitHub”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia GitHub Mention Highlighter

Pobierz pliki rozszerzeń GitHub Mention Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa GitHub Mention Highlighter GitHub Mention Highlighter
ID ojclbekffnkgbacniibdebdihhgenlkp
Oficjalny URL https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp
Opis Highlight user and team mentions on GitHub
Rozmiar pliku 201 KB
Liczba instalacji 278
Aktualna Wersja 0.2.1
Ostatnia Aktualizacja 2020-02-05
Data Publikacji 2020-02-05
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Ben Balter
Typ Płatności free
Strona Rozszerzenia https://github.com/benbalter/github-mention-highlighter
Adres URL Strony Pomocy https://github.com/benbalter/github-mention-highlighter/issues
Obsługiwane Języki 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
    }
}