Helper for GitHub notifications in Gmail
Add links to GitHub threads and shortcuts to your Gmail interface.
Was ist Helper for GitHub notifications in Gmail?
Helper for GitHub notifications in Gmail ist eine Chrome-Erweiterung, die von https://muan.co entwickelt wurde, und ihr Hauptmerkmal ist "Add links to GitHub threads and shortcuts to your Gmail interface.".
Erweiterungsscreenshots
Helper for GitHub notifications in Gmail-Erweiterungs-CRX-Datei herunterladen
Laden Sie Helper for GitHub notifications in Gmail-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Helper for GitHub notifications in Gmail |
ID | gmhijkhbpihfmkmhmcfebmlkaekgmaje |
Offizielle URL | https://chromewebstore.google.com/detail/helper-for-github-notific/gmhijkhbpihfmkmhmcfebmlkaekgmaje |
Beschreibung | Add links to GitHub threads and shortcuts to your Gmail interface. |
Dateigröße | 19.64 KB |
Installationsanzahl | 432 |
Aktuelle Version | 0.8.3 |
Letztes Update | 2021-06-01 |
Veröffentlichungsdatum | 2018-05-11 |
Bewertung | 5.00/5 Insgesamt 7 Bewertungen |
Entwickler | https://muan.co |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/muan/github-gmail |
Hilfeseite URL | https://github.com/muan/github-gmail/issues |
Unterstützte Sprachen | 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" ] } ] } |