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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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