Stack Exchange questions notifications
Emits desktop notifications for newly asked/active questions on SE sites
什麼是Stack Exchange questions notifications?
Stack Exchange questions notifications是由vaultah開發的Chrome擴展程式,該擴展的主要功能是“Emits desktop notifications for newly asked/active questions on SE sites”。
擴展截圖
下載Stack Exchange questions notifications擴展crx文件
下載Stack Exchange questions notifications擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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 |
ID | dbikeaiagnndkbbeeimonfahdmpfgiib |
官方網址 | 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" ] } |