Seeking New

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

Seeking New là gì?

Seeking New là một tiện ích mở rộng Chrome được phát triển bởi Hilo, và tính năng chính của nó là "This extension seeks the next new comment in a Seeking Alpha article.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Seeking New

Tải xuống các tệp mở rộng Seeking New dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Seeking New Seeking New
ID diecolhbhidknefaajchdlmhemljidio
URL Chính Thức https://chromewebstore.google.com/detail/seeking-new/diecolhbhidknefaajchdlmhemljidio
Mô tả This extension seeks the next new comment in a Seeking Alpha article.
Kích Thước Tệp 7.04 KB
Số Lần Cài Đặt 90
Phiên Bản Hiện Tại 2.7
Cập Nhật Lần Cuối 2017-03-26
Ngày Phát Hành 2017-03-26
Đánh Giá 4.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Hilo
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}