Tree Style History

This extension displays your recent history in a tree style.

什麼是Tree Style History?

Tree Style History是由oXnMe開發的Chrome擴展程式,該擴展的主要功能是“This extension displays your recent history in a tree style.”。

擴展截圖

screenshot
screenshot

下載Tree Style History擴展crx文件

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

擴展使用說明

                        This extension displays your recent history in tree style.  
This Work is based on Recent History(https://github.com/umarsheikh13/recent-history) and has get the permission to modify and publish the code as a new exttension, many thanks to Umar.                    

擴展基本資訊

名稱 Tree Style History Tree Style History
ID khcenbpnhbeplojhaolbpldmoppicold
官方網址 https://chromewebstore.google.com/detail/tree-style-history/khcenbpnhbeplojhaolbpldmoppicold
簡介 This extension displays your recent history in a tree style.
檔案大小 447 KB
安裝次數 1,680
目前版本 3.1.12
更新時間 2022-06-23
上架時間 2021-04-28
評分 4.56/5 共 9 次評分
開發者 oXnMe
電子郵箱 [email protected]
付費類型 free
擴展官網 https://github.com/tumuyan/Tree-Style-History
說明頁面URL https://github.com/tumuyan/Tree-Style-History/issues
支援的語言 en,zh-CN
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_name__",
    "short_name": "Tree Style History",
    "author": "Tumuyan",
    "version": "3.1.12",
    "manifest_version": 2,
    "minimum_chrome_version": "22.0",
    "default_locale": "en",
    "description": "__MSG_aboutText__",
    "options_page": "options.html",
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "history",
        "bookmarks",
        "sessions",
        "chrome:\/\/favicon\/",
        "contextMenus"
    ],
    "icons": {
        "16": "images\/tree-16.png",
        "32": "images\/tree-32.png",
        "48": "images\/tree-48.png",
        "128": "images\/tree-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "images\/tree-19.png",
            "38": "images\/tree-38.png",
            "32": "images\/tree-32.png",
            "48": "images\/tree-48.png",
            "128": "images\/tree-128.png"
        },
        "default_popup": "popup.html"
    },
    "commands": {
        "open_history2": {
            "suggested_key": {
                "default": "Ctrl+Shift+H",
                "windows": "Ctrl+Shift+H",
                "mac": "Command+Shift+H"
            },
            "description": "__MSG_treeOpen__"
        },
        "open_history1": {
            "suggested_key": {
                "default": "Alt+Shift+H",
                "windows": "Alt+Shift+H",
                "mac": "Alt+Shift+H"
            },
            "description": "__MSG_showAllHistory__"
        },
        "open_closed": {
            "suggested_key": {
                "default": "Alt+Shift+G",
                "windows": "Alt+Shift+G",
                "mac": "Alt+Shift+G"
            },
            "description": "__MSG_OpenClosedHistory__"
        },
        "open_bookmark": {
            "suggested_key": {
                "default": "Alt+Shift+O",
                "windows": "Alt+Shift+O",
                "mac": "Alt+Shift+O"
            },
            "description": "__MSG_OpenBookMark__"
        }
    }
}