Helper for GitHub notifications in Gmail

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

Helper for GitHub notifications in Gmail là gì?

Helper for GitHub notifications in Gmail là một tiện ích mở rộng Chrome được phát triển bởi https://muan.co, và tính năng chính của nó là "Add links to GitHub threads and shortcuts to your Gmail interface.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Helper for GitHub notifications in Gmail

Tải xuống các tệp mở rộng Helper for GitHub notifications in Gmail dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Helper for GitHub notifications in Gmail Helper for GitHub notifications in Gmail
ID gmhijkhbpihfmkmhmcfebmlkaekgmaje
URL Chính Thức https://chromewebstore.google.com/detail/helper-for-github-notific/gmhijkhbpihfmkmhmcfebmlkaekgmaje
Mô tả Add links to GitHub threads and shortcuts to your Gmail interface.
Kích Thước Tệp 19.64 KB
Số Lần Cài Đặt 432
Phiên Bản Hiện Tại 0.8.3
Cập Nhật Lần Cuối 2021-06-01
Ngày Phát Hành 2018-05-11
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển https://muan.co
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/muan/github-gmail
URL Trang Trợ Giúp https://github.com/muan/github-gmail/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}