Helper for GitHub notifications in Gmail

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

Qu'est-ce que Helper for GitHub notifications in Gmail ?

Helper for GitHub notifications in Gmail est une extension Chrome développée par https://muan.co, et sa fonction principale est "Add links to GitHub threads and shortcuts to your Gmail interface.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Helper for GitHub notifications in Gmail

Téléchargez les fichiers d'extension Helper for GitHub notifications in Gmail au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Helper for GitHub notifications in Gmail Helper for GitHub notifications in Gmail
ID gmhijkhbpihfmkmhmcfebmlkaekgmaje
URL Officiel https://chromewebstore.google.com/detail/helper-for-github-notific/gmhijkhbpihfmkmhmcfebmlkaekgmaje
Description Add links to GitHub threads and shortcuts to your Gmail interface.
Taille du Fichier 19.64 KB
Nombre d'Installations 432
Version Actuelle 0.8.3
Dernière Mise à Jour 2021-06-01
Date de Publication 2018-05-11
Évaluation 5.00/5 Total 7 Évaluations
Développeur https://muan.co
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/muan/github-gmail
URL de la Page d'Aide https://github.com/muan/github-gmail/issues
Langues Prises en Charge 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"
            ]
        }
    ]
}