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.”。

扩展截图

screenshot

下载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 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\/*"
            ]
        }
    ]
}