Stack Exchange questions notifications

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

Stack Exchange questions notifications là gì?

Stack Exchange questions notifications là một tiện ích mở rộng Chrome được phát triển bởi vaultah, và tính năng chính của nó là "Emits desktop notifications for newly asked/active questions on SE sites".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Stack Exchange questions notifications

Tải xuống các tệp mở rộng Stack Exchange questions notifications dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Stack Exchange questions notifications Stack Exchange questions notifications
ID dbikeaiagnndkbbeeimonfahdmpfgiib
URL Chính Thức https://chromewebstore.google.com/detail/stack-exchange-questions/dbikeaiagnndkbbeeimonfahdmpfgiib
Mô tả Emits desktop notifications for newly asked/active questions on SE sites
Kích Thước Tệp 43.9 KB
Số Lần Cài Đặt 13
Phiên Bản Hiện Tại 1.7.0
Cập Nhật Lần Cuối 2017-02-08
Ngày Phát Hành 2017-02-08
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển vaultah
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/vaultah/se-questions-notifications
URL Trang Trợ Giúp https://twitter.com/vaultah
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}