Stack Exchange questions notifications

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

Wat is Stack Exchange questions notifications?

Stack Exchange questions notifications is een Chrome-extensie ontwikkeld door vaultah, en de belangrijkste functie is "Emits desktop notifications for newly asked/active questions on SE sites".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Stack Exchange questions notifications

Download Stack Exchange questions notifications-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Stack Exchange questions notifications Stack Exchange questions notifications
ID dbikeaiagnndkbbeeimonfahdmpfgiib
Officiële URL https://chromewebstore.google.com/detail/stack-exchange-questions/dbikeaiagnndkbbeeimonfahdmpfgiib
Beschrijving Emits desktop notifications for newly asked/active questions on SE sites
Bestandsgrootte 43.9 KB
Aantal Installaties 13
Huidige Versie 1.7.0
Laatst Bijgewerkt 2017-02-08
Publicatiedatum 2017-02-08
Beoordeling 1.00/5 Totaal 1 Beoordelingen
Ontwikkelaar vaultah
Betalingswijze free
Extensiewebsite https://github.com/vaultah/se-questions-notifications
Help Pagina-URL https://twitter.com/vaultah
Ondersteunde Talen 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"
    ]
}