Helper for GitHub notifications in Gmail

Add links to GitHub threads and shortcuts to your Gmail interface.

¿Qué es Helper for GitHub notifications in Gmail?

Helper for GitHub notifications in Gmail es una extensión de Chrome desarrollada por https://muan.co, y su función principal es "Add links to GitHub threads and shortcuts to your Gmail interface.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Helper for GitHub notifications in Gmail

Descarga archivos de extensión Helper for GitHub notifications in Gmail en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Open your GitHub notifications using shift + g, or a "Visit Thread on GitHub" button in mail view. Or if you have keyboard shortcut enabled in Gmail, you can a select a GitHub notification email thread, and use ctrl + return in the list view and/or anywhere (requires an organization named label) to visit the GitHub page.                    

Información Básica de la Extensión

Nombre Helper for GitHub notifications in Gmail Helper for GitHub notifications in Gmail
ID gmhijkhbpihfmkmhmcfebmlkaekgmaje
URL Oficial https://chromewebstore.google.com/detail/helper-for-github-notific/gmhijkhbpihfmkmhmcfebmlkaekgmaje
Descripción Add links to GitHub threads and shortcuts to your Gmail interface.
Tamaño del Archivo 19.64 KB
Cantidad de Instalaciones 432
Versión Actual 0.8.3
Última Actualización 2021-06-01
Fecha de Publicación 2018-05-11
Calificación 5.00/5 Total de 7 Calificaciones
Desarrollador https://muan.co
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/muan/github-gmail
URL de la Página de Ayuda https://github.com/muan/github-gmail/issues
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Helper for GitHub notifications in Gmail",
    "short_name": "helpergithubgmail",
    "version": "0.8.3",
    "manifest_version": 2,
    "description": "Add links to GitHub threads and shortcuts to your Gmail interface.",
    "homepage_url": "http:\/\/github.com\/muan\/github-gmail",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "options_page": "src\/options\/index.html",
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "css": [
                "src\/inject\/inject.css"
            ]
        },
        {
            "matches": [
                "https:\/\/mail.google.com\/*",
                "https:\/\/inbox.google.com\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ]
        }
    ]
}