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是由https://muan.co開發的Chrome擴展程式,該擴展的主要功能是“Add links to GitHub threads and shortcuts to your Gmail interface.”。

擴展截圖

screenshot

下載Helper for GitHub notifications in Gmail擴展crx文件

下載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
官方網址 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"
            ]
        }
    ]
}