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 |
公式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" ] } |