ToolBrowser

mini browser on the toolbar

Was ist ToolBrowser?

ToolBrowser ist eine Chrome-Erweiterung, die von hocgin entwickelt wurde, und ihr Hauptmerkmal ist "mini browser on the toolbar".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ToolBrowser-Erweiterungs-CRX-Datei herunterladen

Laden Sie ToolBrowser-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This application offers users a convenient way to access a mini browser directly from the toolbar. It enables easy browsing of web content and performing related actions without the need to switch windows. Its key features include user-friendliness and simplicity, allowing quick access to web content and related operations.

To enhance efficiency, you can activate the "Quick Mode" by pressing `⌃ + ⇧ + X` on any page. This mode enables clicking on links to open them in the "ToolBrowser" for further actions. Additionally, you can open the "ToolBrowser" popup window by pressing `⌃ + ⇧ + D`.

To configure shortcut keys, you can visit `chrome://extensions/shortcuts`.

If you encounter any issues while using the application, there's no need to worry. Writing negative reviews won't solve the problem. Instead, you can provide feedback through the following link, and I'll address it promptly:

👉 https://logspot.hocgin.top/addone-toolbrowser?active=feedback 👈

If you find this application helpful, I would greatly appreciate your positive review. 🌹                    

Grundlegende Informationen zur Erweiterung

Name ToolBrowser ToolBrowser
ID cmejcceciccnofbnekcfbcgdghcaohpa
Offizielle URL https://chromewebstore.google.com/detail/toolbrowser/cmejcceciccnofbnekcfbcgdghcaohpa
Beschreibung mini browser on the toolbar
Dateigröße 540 KB
Installationsanzahl 72
Aktuelle Version 1.0.16
Letztes Update 2023-10-31
Veröffentlichungsdatum 2022-12-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler hocgin
E-Mail [email protected]
Zahlungsart free
URL der Datenschutzrichtlinien-Seite https://logspot.hocgin.top/privacy
Unterstützte Sprachen en,zh-CN,zh-TW
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_extension_name__",
    "version": "1.0.16",
    "description": "__MSG_extension_description__",
    "manifest_version": 3,
    "minimum_chrome_version": "88",
    "action": {
        "default_popup": "$popup.html",
        "default_title": "__MSG_extension_action_title__"
    },
    "icons": {
        "16": "$_logo_16.png",
        "32": "$_logo_32.png",
        "48": "$_logo_48.png",
        "128": "$_logo_128.png"
    },
    "default_locale": "en",
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "browser.html",
                "contentScript_0.css",
                "contentScript_0.js"
            ]
        }
    ],
    "permissions": [
        "sidePanel",
        "contextMenus",
        "scripting",
        "declarativeNetRequest",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_start",
            "all_frames": true,
            "js": [
                "contentScript_0.js"
            ],
            "css": []
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "commands": {
        "toggle_toolbrowser": {
            "suggested_key": {
                "default": "Ctrl+Shift+X",
                "mac": "MacCtrl+Shift+X"
            },
            "description": "__MSG_commands_toggle_toolbrowser__"
        },
        "_execute_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+D",
                "mac": "MacCtrl+Shift+D"
            }
        }
    },
    "side_panel": {
        "default_path": "sidepanel.html"
    }
}