GitHub Mention Highlighter

Highlight user and team mentions on GitHub

Apa itu GitHub Mention Highlighter?

GitHub Mention Highlighter adalah ekstensi Chrome yang dikembangkan oleh Ben Balter, dan fitur utamanya adalah "Highlight user and team mentions on GitHub".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi GitHub Mention Highlighter

Unduh file ekstensi GitHub Mention Highlighter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama GitHub Mention Highlighter GitHub Mention Highlighter
ID ojclbekffnkgbacniibdebdihhgenlkp
URL Resmi https://chromewebstore.google.com/detail/github-mention-highlighte/ojclbekffnkgbacniibdebdihhgenlkp
Deskripsi Highlight user and team mentions on GitHub
Ukuran File 201 KB
Jumlah Instalasi 278
Versi Saat Ini 0.2.1
Terakhir Diperbarui 2020-02-05
Tanggal Publikasi 2020-02-05
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Ben Balter
Tipe Pembayaran free
Situs Ekstensi https://github.com/benbalter/github-mention-highlighter
URL Halaman Bantuan https://github.com/benbalter/github-mention-highlighter/issues
Bahasa yang Didukung 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
    }
}