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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        ✨ 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"
    ]
}