Stack Exchange questions notifications

Emits desktop notifications for newly asked/active questions on SE sites

Stack Exchange questions notifications क्या है?

Stack Exchange questions notifications vaultah द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Emits desktop notifications for newly asked/active questions on SE sites"।

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

screenshot

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

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

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

                        A simple extension that fetches the latest questions from pages of Stack Exchange sites.

Stack Exchange sites perform question filtering in browser, and I don't want to roll out a fragile tag filtering logic which may break after some minor change on their side. Therefore, this extension listens to DOM changes. It will only work if you open the main page or a page like the one on the screenshot.

For each new question this extension plays a notification sound and displays a clickable desktop notification. Clicking on the desktop notification will open a new tab with the corresponding question.

This extension is licensed under MIT and is available on GitHub and Chrome Web Store.                    

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

नाम Stack Exchange questions notifications Stack Exchange questions notifications
ID dbikeaiagnndkbbeeimonfahdmpfgiib
आधिकारिक URL https://chromewebstore.google.com/detail/stack-exchange-questions/dbikeaiagnndkbbeeimonfahdmpfgiib
विवरण Emits desktop notifications for newly asked/active questions on SE sites
फ़ाइल का आकार 43.9 KB
स्थापना संख्या 13
वर्तमान संस्करण 1.7.0
अंतिम अपडेट 2017-02-08
प्रकाशन तिथि 2017-02-08
रेटिंग 1.00/5 कुल 1 रेटिंग्स
डेवलपर vaultah
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/vaultah/se-questions-notifications
सहायता पृष्ठ URL https://twitter.com/vaultah
समर्थित भाषाएँ en-GB
manifest.json
{
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery-3.1.1.min.js",
                "main.js"
            ],
            "matches": [
                "*:\/\/*.stackexchange.com\/*",
                "*:\/\/*.stackoverflow.com\/*",
                "*:\/\/*.mathoverflow.net\/*",
                "*:\/\/*.stackapps.com\/*",
                "*:\/\/*.serverfault.com\/*",
                "*:\/\/*.superuser.com\/*",
                "*:\/\/*.askubuntu.com\/*"
            ],
            "include_globs": [
                "*\/",
                "*\/questions*"
            ],
            "exclude_globs": [
                "*questions\/0*",
                "*questions\/1*",
                "*questions\/2*",
                "*questions\/3*",
                "*questions\/4*",
                "*questions\/5*",
                "*questions\/6*",
                "*questions\/7*",
                "*questions\/8*",
                "*questions\/9*"
            ],
            "run_at": "document_end"
        }
    ],
    "description": "Emits desktop notifications for newly asked\/active questions on SE sites",
    "icons": {
        "128": "icon_128.png"
    },
    "manifest_version": 2,
    "name": "Stack Exchange questions notifications",
    "permissions": [
        "notifications"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.7.0",
    "web_accessible_resources": [
        "sound.wav",
        "icon_128.png"
    ]
}