CBox

Summon a command-line panel on any webpage for quick navigation, commands, and searches.

CBoxとは何ですか?

CBoxはjokiminaによって開発されたChromeの拡張機能で、その主な機能は「Summon a command-line panel on any webpage for quick navigation, commands, and searches.」です。

拡張機能のスクリーンショット

screenshot

CBox拡張機能のCRXファイルをダウンロード

CBox拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        ✨ Boost your browsing experience with CBox – the ultimate command box for Chrome! ✨

Features:
- 🌐 Fully offline, no internet connection required.
- ⌨️ You can wake it up on any page.
- ⏰ Recently active tabs
- 🔍 Search and quickly jump/open tabs from your open tabs, bookmarks, and browsing history (up to 1 month and a maximum of 1000 entries).
- 🔎 Quickly search and jump to different search engines.
- ⚙️ Perform various browser operations with ease.

Ready to take your browsing to the next level? Install CBox now and revolutionize the way you browse the web!

https://github.com/jokimina/cbox-chrome-extension                    

拡張機能の基本情報

名前 CBox CBox
ID cekckmkolmlobfidedolgcppfgbinhmc
公式URL https://chromewebstore.google.com/detail/cbox/cekckmkolmlobfidedolgcppfgbinhmc
説明 Summon a command-line panel on any webpage for quick navigation, commands, and searches.
ファイルサイズ 186 KB
インストール数 345
現在のバージョン 1.0.8
最終更新日 2024-01-05
公開日 2023-12-12
開発者 jokimina
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/jokimina/cbox-chrome-extension
ヘルプページのURL https://github.com/jokimina/cbox-chrome-extension
プライバシーポリシーページのURL https://sites.google.com/view/guage-app/policy/cbox?authuser=0
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "CBox",
    "short_name": "CBox",
    "description": "Summon a command-line panel on any webpage for quick navigation, commands, and searches.",
    "version": "1.0.8",
    "options_ui": {
        "page": "options.html"
    },
    "action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "icon.png",
                "chunk\/*.js",
                "assets\/*"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "service_worker.js",
        "type": "module"
    },
    "permissions": [
        "storage",
        "activeTab",
        "tabs",
        "history",
        "bookmarks"
    ]
}