Tree Style History

This extension displays your recent history in a tree style.

Tree Style History क्या है?

Tree Style History oXnMe द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension displays your recent history in a tree style."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Tree Style History एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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
आधिकारिक URL 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__"
        }
    }
}