CBox

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

CBoxคืออะไร?

CBox เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jokimina และคุณลักษณะหลักของมันคือ "Summon a command-line panel on any webpage for quick navigation, commands, and searches."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CBox

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}