Seeking New

This extension seeks the next new comment in a Seeking Alpha article.

What is Seeking New?

Seeking New is a Chrome extension developed by Hilo, and its main feature is "This extension seeks the next new comment in a Seeking Alpha article.".

Extension Screenshots

screenshot

Download Seeking New Extension CRX File

Download Seeking New extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Seeking New Seeking New
ID diecolhbhidknefaajchdlmhemljidio
Official URL https://chromewebstore.google.com/detail/seeking-new/diecolhbhidknefaajchdlmhemljidio
Description This extension seeks the next new comment in a Seeking Alpha article.
File Size 7.04 KB
Installation Count 90
Current Version 2.7
Last Updated 2017-03-26
Publish Date 2017-03-26
Rating 4.00/5 Total 1 Ratings
Developer Hilo
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}