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
公式URL 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
Eメール [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
}