GitHub Mention Highlighter

Highlight user and team mentions on GitHub

Vad är GitHub Mention Highlighter?

GitHub Mention Highlighter är en Chrome-tillägg utvecklad av Ben Balter, och dess huvudfunktion är "Highlight user and team mentions on GitHub".

Tilläggsskärmbilder

screenshot

Ladda ner GitHub Mention Highlighter-förlängningens CRX-fil

Ladda ner GitHub Mention Highlighter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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äggande Information om Tillägg

Namn GitHub Mention Highlighter GitHub Mention Highlighter
ID ojclbekffnkgbacniibdebdihhgenlkp
Officiell webbadress https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp
Beskrivning Highlight user and team mentions on GitHub
Filstorlek 201 KB
Antal Installationer 278
Aktuell Version 0.2.1
Senast Uppdaterad 2020-02-05
Publiceringsdatum 2020-02-05
Betyg 5.00/5 Totalt 1 Betyg
Utvecklare Ben Balter
Betalningssätt free
Tilläggswebbplats https://github.com/benbalter/github-mention-highlighter
Hjälpsida URL https://github.com/benbalter/github-mention-highlighter/issues
Stödda Språk 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
    }
}