Article Analyst

Helps you make sense of what you read online.

Article Analyst là gì?

Article Analyst là một tiện ích mở rộng Chrome được phát triển bởi Matt Youell, và tính năng chính của nó là "Helps you make sense of what you read online.".

Ả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 Article Analyst

Tải xuống các tệp mở rộng Article Analyst 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

                        If you've ever lost track of who a person was while reading a news story, you'll want Article Analyst in your browser. Try it! 

NEW version! 

* Simple, clean design. Easy to understand and use.

* Hand-coded support for some of the most popular US news sites including:

New York Times
USA Today
The Guardian (US & UK)
Washington Post
Bloomberg
Wall Street Journal
LA Times
New York Post
Chicago Sun-Times
NY Daily News
SF Gate / San Francisco Chronicle
Christian Science Monitor
San Jose Mercury News
Vancouver Sun
Sacramento Bee
Seattle Times
Oregonian


Have you ever lost track of who a person was in a news story or blog post? Perhaps someone was mentioned earlier in the article but you're a screen or two past that point. You see a person quoted but don't know how they fit into the story. This simple extension solves that problem. 

Online news follows the same traditional news format that newspapers have used for over 200 years. It's easy to lose track of the details of who and what you're reading about when you read content online.

Make sense of what you read online. Identify the most important topics in any article you read and reference those topics quickly and easily. Article Analyst works with all sorts of online written content, including news articles and blog posts.

It's easy to use and the analysis is completely automatic. If the software detects an article and can identify important topics, an icon will appear in the browser bar. The icon looks like a printed page that has been highlighted. To see the report for a given article, just click on the icon. Each important topic will be listed. Click on any topic to search Google for more information.

Article Analyst is new and still under development. Feedback is appreciated!                    

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

Tên Article Analyst Article Analyst
ID ochdgfcjleejnijggkjghkdmledepjdd
URL Chính Thức https://chrome.google.com/webstore/detail/article-analyst/ochdgfcjleejnijggkjghkdmledepjdd
Mô tả Helps you make sense of what you read online.
Kích Thước Tệp 199 KB
Số Lần Cài Đặt 224
Phiên Bản Hiện Tại 1.0.1.0
Cập Nhật Lần Cuối 2013-09-10
Ngày Phát Hành 2013-09-10
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Matt Youell
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": "Article Analyst",
    "description": "Helps you make sense of what you read online.",
    "version": "1.0.1.0",
    "minimum_chrome_version": "22",
    "icons": {
        "16": "icons\/logo_16x16.png",
        "48": "icons\/logo_48x48.png",
        "128": "icons\/logo_128x128.png"
    },
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "web_accessible_resources": [
        "icons\/logo_16x16.png"
    ],
    "page_action": {
        "default_icon": "icons\/logo_16x16.png",
        "default_popup": "popup.html",
        "default_title": "Article Analyst"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "js": [
                "require.js",
                "jquery.js",
                "underscore-min.js",
                "stopwords.js",
                "aalib.js",
                "aa.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "jquery.js",
            "background.js"
        ]
    }
}