Notifier for GitHub

Displays your GitHub notifications unread count

Notifier for GitHubคืออะไร?

Notifier for GitHub เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sindre Sorhus และคุณลักษณะหลักของมันคือ "Displays your GitHub notifications unread count"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Notifier for GitHub

ดาวน์โหลดไฟล์ส่วนขยาย Notifier for GitHub ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        It checks the GitHub Notifications API every minute. Supports GitHub Enterprise and an option to only show unread count for issues you're participating in. Make sure to add a token in the Options page.



## Permissions

Both requested permissions are optional, so you can just decline if you don't want it.

### Tabs permission

The first time you click on the extension icon, it will ask you for access to browser tabs. We need this to know if there is already an opened GitHub notifications page and switch to it if so.

### Notifications permission

If you want to receive desktop notifications, you can enable them on extension options page. You will then be asked for the notifications permission.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Notifier for GitHub Notifier for GitHub
ID lmjdlojahmbbcodnpecnjnmlddbkjhnn
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/notifier-for-github/lmjdlojahmbbcodnpecnjnmlddbkjhnn
คำอธิบาย Displays your GitHub notifications unread count
ขนาดไฟล์ 68.76 KB
จำนวนการติดตั้ง 11,891
เวอร์ชันปัจจุบัน 23.7.12
อัปเดตครั้งล่าสุด 2023-07-12
วันที่เผยแพร่ 2020-06-21
คะแนน 4.63/5 รวมทั้งหมด 52 คะแนน
ผู้พัฒนา Sindre Sorhus
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/sindresorhus/notifier-for-github-chrome
URL หน้าช่วยเหลือ https://github.com/sindresorhus/notifier-for-github-chrome/issues
URL หน้านโยบายความเป็นส่วนตัว https://github.com/sindresorhus/privacy-policy/blob/master/chrome-extensions.md
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Notifier for GitHub",
    "version": "23.7.12",
    "description": "Displays your GitHub notifications unread count",
    "homepage_url": "https:\/\/github.com\/sindresorhus\/notifier-for-github",
    "manifest_version": 2,
    "minimum_chrome_version": "74",
    "applications": {
        "gecko": {
            "id": "{8d1582b2-ff2a-42e0-ba40-42f4ebfe921b}",
            "strict_min_version": "67.0"
        }
    },
    "icons": {
        "128": "\/icon.png"
    },
    "permissions": [
        "alarms",
        "storage"
    ],
    "optional_permissions": [
        "tabs",
        "notifications"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "\/icon-toolbar.png"
    },
    "options_ui": {
        "page": "\/options.html",
        "chrome_style": true
    },
    "web_accessible_resources": [
        "\/icon-notif.png",
        "\/sounds\/bell.ogg"
    ]
}