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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
            ]
        }
    ]
}