Seeking New

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

Was ist Seeking New?

Seeking New ist eine Chrome-Erweiterung, die von Hilo entwickelt wurde, und ihr Hauptmerkmal ist "This extension seeks the next new comment in a Seeking Alpha article.".

Erweiterungsscreenshots

screenshot

Seeking New-Erweiterungs-CRX-Datei herunterladen

Laden Sie Seeking New-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Seeking New Seeking New
ID diecolhbhidknefaajchdlmhemljidio
Offizielle URL https://chromewebstore.google.com/detail/seeking-new/diecolhbhidknefaajchdlmhemljidio
Beschreibung This extension seeks the next new comment in a Seeking Alpha article.
Dateigröße 7.04 KB
Installationsanzahl 90
Aktuelle Version 2.7
Letztes Update 2017-03-26
Veröffentlichungsdatum 2017-03-26
Bewertung 4.00/5 Insgesamt 1 Bewertungen
Entwickler Hilo
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}