Desktop Notifications for Stack Exchange

Real-time desktop notifications for the Stack Exchange.

Desktop Notifications for Stack Exchange क्या है?

Desktop Notifications for Stack Exchange Rob W द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Real-time desktop notifications for the Stack Exchange."।

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

screenshot
screenshot
screenshot

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

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

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

                        Key features:

- Real-time desktop notifications for the inbox of any user.
- Configurable behaviour for clicking on the notification.
- Opt-in to keep the extension running when Chrome is closed.
- Don't want to receive notifications any more? Visit options and click on Stop.
- Unread count displayed on button.
- Desktop notifications can be disabled.
- Your StackExchange inbox is shown in the panel at the extension button.

After installation, request an API token at the options page to get real-time notifications of new messages.
Alternatively, only set a StackExchange ID without granting the token. (not recommended, because this token is needed for getting the unread count at any given time).

Permissions warnings:

- Notifications - To display desktop notifications
- Tabs - To focus the new window after clicking on the notification

Also available as a Firefox Add-on:
https://addons.mozilla.org/en-US/firefox/addon/real-time-desktop-notificat/

Support and information:
https://stackapps.com/q/3780/9699

Privacy policy:
You may specify a StackExchange ID (and optionally use StackExchange's mechanism to grant an StackExchange API token) to enable the extension to function. This data is stored locally only, and only used with the StackExchange API to receive notifications for inbox messages. No other data is collected, and the data is not used for any other purpose.                    

एक्सटेंशन की मूल जानकारी

नाम Desktop Notifications for Stack Exchange Desktop Notifications for Stack Exchange
ID ijglncoabcgieiokjmgdogpefdblmnle
आधिकारिक URL https://chromewebstore.google.com/detail/desktop-notifications-for/ijglncoabcgieiokjmgdogpefdblmnle
विवरण Real-time desktop notifications for the Stack Exchange.
फ़ाइल का आकार 26.63 KB
स्थापना संख्या 526
वर्तमान संस्करण 2.2
अंतिम अपडेट 2021-09-15
प्रकाशन तिथि 2019-02-27
रेटिंग 4.87/5 कुल 15 रेटिंग्स
डेवलपर Rob W
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://stackapps.com/q/3780/9699
सहायता पृष्ठ URL https://github.com/Rob--W/stackexchange-notifications/issues
गोपनीयता नीति पृष्ठ URL https://robwu.nl/privacy/cws
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Desktop Notifications for Stack Exchange",
    "description": "Real-time desktop notifications for the Stack Exchange.",
    "homepage_url": "https:\/\/stackapps.com\/q\/3780\/9699",
    "version": "2.2",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "localStorage-proxy.js",
            "stackexchange-inbox-api.js",
            "stackexchange-inbox-api-chrome.js",
            "using-websocket.js",
            "bridge.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/stackexchange.com\/oauth\/login_success*"
            ],
            "run_at": "document_end",
            "js": [
                "login_success.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html"
    },
    "optional_permissions": [
        "background"
    ],
    "browser_action": {
        "default_popup": "inbox.html",
        "default_icon": {
            "19": "icon19.png",
            "38": "icon38.png"
        }
    },
    "icons": {
        "48": "icon48.png",
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/api.stackexchange.com\/*",
        "notifications",
        "storage",
        "tabs"
    ],
    "web_accessible_resources": [
        "icon.png"
    ]
}