Notifier for GitHub

Displays your GitHub notifications unread count

Notifier for GitHub क्या है?

Notifier for GitHub Sindre Sorhus द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays your GitHub notifications unread count"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Notifier for GitHub एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

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