Helper for GitHub notifications in Gmail

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

Τι είναι το Helper for GitHub notifications in Gmail;

Το Helper for GitHub notifications in Gmail είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://muan.co, και η κύρια λειτουργία του είναι "Add links to GitHub threads and shortcuts to your Gmail interface.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Helper for GitHub notifications in Gmail

Λήψη αρχείων επέκτασης Helper for GitHub notifications in Gmail σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Helper for GitHub notifications in Gmail Helper for GitHub notifications in Gmail
ID gmhijkhbpihfmkmhmcfebmlkaekgmaje
Επίσημο URL https://chromewebstore.google.com/detail/helper-for-github-notific/gmhijkhbpihfmkmhmcfebmlkaekgmaje
Περιγραφή Add links to GitHub threads and shortcuts to your Gmail interface.
Μέγεθος Αρχείου 19.64 KB
Αριθμός Εγκαταστάσεων 432
Τρέχουσα Έκδοση 0.8.3
Τελευταία Ενημέρωση 2021-06-01
Ημερομηνία Δημοσίευσης 2018-05-11
Αξιολόγηση 5.00/5 Συνολικά 7 Αξιολογήσεις
Προγραμματιστής https://muan.co
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/muan/github-gmail
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/muan/github-gmail/issues
Υποστηριζόμενες Γλώσσες 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"
            ]
        }
    ]
}