Seeking New
This extension seeks the next new comment in a Seeking Alpha article.
Seeking Newとは何ですか?
Seeking NewはHiloによって開発されたChromeの拡張機能で、その主な機能は「This extension seeks the next new comment in a Seeking Alpha article.」です。
拡張機能のスクリーンショット
Seeking New拡張機能のCRXファイルをダウンロード
Seeking New拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension adds a toolbar button that will automatically scroll the next new comment of a Seeking Alpha article into view each time it is clicked. * Specific comments can be jumped to by selecting them from context menu (right click). * Left clicking on the orange "New" icon in the article will scroll to the next new comment. * Right clicking on the orange "New" icon in the article will scroll to the previous new comment. * Shift-Right clicking on the commenter's name will hide/show comments for this commenter. No more endless scrolling and visually scanning for the orange "New" icon, it's just a click away.
拡張機能の基本情報
名前 | Seeking New |
ID | diecolhbhidknefaajchdlmhemljidio |
公式URL | https://chromewebstore.google.com/detail/seeking-new/diecolhbhidknefaajchdlmhemljidio |
説明 | This extension seeks the next new comment in a Seeking Alpha article. |
ファイルサイズ | 7.04 KB |
インストール数 | 90 |
現在のバージョン | 2.7 |
最終更新日 | 2017-03-26 |
公開日 | 2017-03-26 |
評価 | 4.00/5 合計 1 レビュー |
開発者 | Hilo |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Seeking New", "description": "This extension seeks the next new comment in a Seeking Alpha article.", "version": "2.7", "icons": { "16": "seekingnew16.png", "48": "seekingnew48.png", "128": "seekingnew128.png" }, "permissions": [ "contextMenus", "tabs" ], "browser_action": { "default_icon": "seekingnew16.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "js": [ "seekingnew.js" ], "matches": [ "http:\/\/seekingalpha.com\/*", "https:\/\/seekingalpha.com\/*" ] } ] } |