Visual History

Tree-based browser history navigation and visualization

什麼是Visual History?

Visual History是由http://joelgustafson.com開發的Chrome擴展程式,該擴展的主要功能是“Tree-based browser history navigation and visualization”。

擴展截圖

screenshot
screenshot
screenshot

下載Visual History擴展crx文件

下載Visual History擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Visual History Visual History
ID nkckokcpjekkokllfplejfkocaikmnml
官方網址 https://chrome.google.com/webstore/detail/visual-history/nkckokcpjekkokllfplejfkocaikmnml
簡介 Tree-based browser history navigation and visualization
檔案大小 34.92 KB
安裝次數 505
目前版本 2.0.3
更新時間 2016-12-24
上架時間 2016-12-24
評分 2.55/5 共 22 次評分
開發者 http://joelgustafson.com
電子郵箱 [email protected]
付費類型 free
擴展官網 http://joelgustafson.com/projects/visual-history.html
說明頁面URL https://github.com/joeltg/visual_history
支援的語言 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
}