Visual History

Tree-based browser history navigation and visualization

Visual History là gì?

Visual History là một tiện ích mở rộng Chrome được phát triển bởi http://joelgustafson.com, và tính năng chính của nó là "Tree-based browser history navigation and visualization".

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

screenshot
screenshot
screenshot

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

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

                        Visual History delinearizes your browsing history with a richer alternative to the Back and Forward buttons. Instead of a stack of past websites, Visual History maintains the forest of trees that represent each tab’s path around the internet, and lets you easily backtrack to any site you recently visited. Routes that normally have to be manually re-traced, like jumping between search results or forum posts, can be intuitively and quickly directed without revisiting the parent page. 

Navigate the tree using the Ctrl+Arrow or Cmd+Arrow key shortcuts, or by clicking the tree icon in the toolbar.                    

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

Tên Visual History Visual History
ID nkckokcpjekkokllfplejfkocaikmnml
URL Chính Thức https://chrome.google.com/webstore/detail/visual-history/nkckokcpjekkokllfplejfkocaikmnml
Mô tả Tree-based browser history navigation and visualization
Kích Thước Tệp 34.92 KB
Số Lần Cài Đặt 505
Phiên Bản Hiện Tại 2.0.3
Cập Nhật Lần Cuối 2016-12-24
Ngày Phát Hành 2016-12-24
Đánh Giá 2.55/5 Tổng số 22 Đánh Giá
Nhà Phát Triển http://joelgustafson.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://joelgustafson.com/projects/visual-history.html
URL Trang Trợ Giúp https://github.com/joeltg/visual_history
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Visual History",
    "description": "Tree-based browser history navigation and visualization",
    "version": "2.0.3",
    "author": "Joel Gustafson and Kenny Friedman",
    "permissions": [
        "tabs",
        "contextMenus"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "lib\/d3-hierarchy.v0.2.min.js",
            "src\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "lib\/d3-selection.v0.7.min.js",
                "src\/content.js"
            ],
            "css": [
                "src\/content.css"
            ]
        }
    ],
    "icons": {
        "128": "icons\/icon.png",
        "16": "icons\/icon16.png"
    },
    "browser_action": {
        "default_icon": {
            "38": "icons\/icon38.png"
        },
        "default_title": "Show Tree"
    },
    "web_accessible_resources": [
        "icons\/tab.png",
        "src\/tree.css"
    ],
    "commands": {
        "move-up": {
            "suggested_key": {
                "default": "Ctrl+Up"
            },
            "description": "Move up the tree"
        },
        "move-down": {
            "suggested_key": {
                "default": "Ctrl+Down"
            },
            "description": "Move down the tree"
        },
        "move-left": {
            "suggested_key": {
                "default": "Ctrl+Left"
            },
            "description": "Move to the left in the tree"
        },
        "move-right": {
            "suggested_key": {
                "default": "Ctrl+Right"
            },
            "description": "Move to the right in the tree"
        }
    },
    "manifest_version": 2
}