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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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
}