Seeking New

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

O que é Seeking New?

Seeking New é uma extensão do Chrome desenvolvida por Hilo, e sua principal característica é "This extension seeks the next new comment in a Seeking Alpha article.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Seeking New

Baixe arquivos de extensão Seeking New no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Seeking New Seeking New
ID diecolhbhidknefaajchdlmhemljidio
URL Oficial https://chromewebstore.google.com/detail/seeking-new/diecolhbhidknefaajchdlmhemljidio
Descrição This extension seeks the next new comment in a Seeking Alpha article.
Tamanho do Arquivo 7.04 KB
Contagem de Instalações 90
Versão Atual 2.7
Última Atualização 2017-03-26
Data de Publicação 2017-03-26
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor Hilo
Tipo de Pagamento free
Idiomas Suportados 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\/*"
            ]
        }
    ]
}