Hacker News Comments Notifier Plugin
Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published
Hacker News Comments Notifier Pluginとは何ですか?
Hacker News Comments Notifier Pluginはhttps://www.binomads.comによって開発されたChromeの拡張機能で、その主な機能は「Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published」です。
拡張機能のスクリーンショット
Hacker News Comments Notifier Plugin拡張機能のCRXファイルをダウンロード
Hacker News Comments Notifier Plugin拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
- Get notifications of Hacker News' threads. - Receive notifications each 10 minutes of the threads you get subscribed to. - At the original HN website - https://news.ycombinator.com - new comments show up. - Click on the extension badge to see the list of subscribed threads, with HN original look and feel. - See the unread comments just at the extension badge. * This extension hasn't been tested together with other Hacker News Extensions. Make sure you uninstall other Hacker News extensions or deactivate them * Do you want other features? You found a bug? Report here: https://github.com/binomads/hn-notification-plugin See a GIF of how it works here: https://user-images.githubusercontent.com/84540/32239715-9b77868a-be6b-11e7-9543-4858fe292d5f.gif
拡張機能の基本情報
名前 | Hacker News Comments Notifier Plugin |
ID | fcdogcdfbjpnhcnflhdpcdfjmmiedebo |
公式URL | https://chromewebstore.google.com/detail/hacker-news-comments-noti/fcdogcdfbjpnhcnflhdpcdfjmmiedebo |
説明 | Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published |
ファイルサイズ | 30.68 KB |
インストール数 | 16 |
現在のバージョン | 0.0.11 |
最終更新日 | 2017-10-31 |
公開日 | 2017-10-31 |
評価 | 5.00/5 合計 2 レビュー |
開発者 | https://www.binomads.com |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/binomads/hn-notification-plugin |
ヘルプページのURL | https://github.com/binomads/hn-notification-plugin |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Hacker News Comments Notifier Plugin", "description": "Hacker News Comments Notifier Plugin allows to subscribe to any HN's thread. Receive notifications with new comments published", "version": "0.0.11", "manifest_version": 2, "short_name": "Hacker News Comments Notifier", "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/*" ], "js": [ "i.js" ] } ], "browser_action": { "default_icon": { "16": "icons\/hn_16.png", "48": "icons\/hn_48.png", "128": "icons\/hn_128.png" }, "default_title": "Hacker News Notifier", "default_popup": "popup.html" }, "icons": { "16": "icons\/hn_16.png", "48": "icons\/hn_48.png", "128": "icons\/hn_128.png" }, "background": { "scripts": [ "b.js" ] }, "permissions": [ "notifications", "tabs", "https:\/\/hacker-news.firebaseio.com\/v0\/item\/*" ], "web_accessible_resources": [ "icons\/hn_128.png" ] } |