Browsing Graph

View your browsing history in a graph

Browsing Graph là gì?

Browsing Graph là một tiện ích mở rộng Chrome được phát triển bởi http://bgraph.herokuapp.com, và tính năng chính của nó là "View your browsing history in a graph".

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

screenshot
screenshot
screenshot
screenshot

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

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

                        How many time do you feel disappointed for not remembering links you have visited while researching about something on the internet. This is particularly annoying when you want to remember some useful links for the future reference. Bookmark might help but mere list of links you visited in the past does not give you any helpful information.

Browsing Graph solves this problem. When you set it to capture a concept, it saves all the links you visit and builds a graph based on your browsing history since you initialised the concept. Using this graph, you can see how the links are related in a certain topic. It lets you capture knowledge and organise them without any effort.

More importantly, capturing browsing history and building a graph happen entirely in client side - in your browser. Only when you save it in the cloud, it stores data in server side.                    

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

Tên Browsing Graph Browsing Graph
ID mablbgnomenhcddjdmecpkppllklolch
URL Chính Thức https://chrome.google.com/webstore/detail/browsing-graph/mablbgnomenhcddjdmecpkppllklolch
Mô tả View your browsing history in a graph
Kích Thước Tệp 437 KB
Số Lần Cài Đặt 172
Phiên Bản Hiện Tại 0.0.5.3
Cập Nhật Lần Cuối 2016-08-20
Ngày Phát Hành 2016-08-20
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://bgraph.herokuapp.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Ye Myat Thein",
    "manifest_version": 2,
    "name": "Browsing Graph",
    "short_name": "Browsing Graph",
    "description": "View your browsing history in a graph",
    "version": "0.0.5.3",
    "background": {
        "scripts": [
            "ext_scripts\/common.js",
            "ext_scripts\/event_helper.js",
            "ext_scripts\/event.js"
        ],
        "persistent": false
    },
    "icons": {
        "16": "res\/icon_16.png",
        "48": "res\/icon_48.png",
        "128": "res\/icon_128.png"
    },
    "browser_action": {
        "default_popup": "pages\/popup.html"
    },
    "permissions": [
        "webNavigation",
        "history",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "ext_scripts\/common.js",
                "ext_scripts\/content.js"
            ],
            "run_at": "document_end"
        }
    ]
}