CBox

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

CBox là gì?

CBox là một tiện ích mở rộng Chrome được phát triển bởi jokimina, và tính năng chính của nó là "Summon a command-line panel on any webpage for quick navigation, commands, and searches.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng CBox

Tải xuống các tệp mở rộng CBox dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        ✨ 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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên CBox CBox
ID cekckmkolmlobfidedolgcppfgbinhmc
URL Chính Thức https://chromewebstore.google.com/detail/cbox/cekckmkolmlobfidedolgcppfgbinhmc
Mô tả Summon a command-line panel on any webpage for quick navigation, commands, and searches.
Kích Thước Tệp 186 KB
Số Lần Cài Đặt 345
Phiên Bản Hiện Tại 1.0.8
Cập Nhật Lần Cuối 2024-01-05
Ngày Phát Hành 2023-12-12
Nhà Phát Triển jokimina
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jokimina/cbox-chrome-extension
URL Trang Trợ Giúp https://github.com/jokimina/cbox-chrome-extension
URL Trang Chính Sách Bảo Mật https://sites.google.com/view/guage-app/policy/cbox?authuser=0
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}