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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            ]
        }
    ]
}