CBox

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

CBox क्या है?

CBox jokimina द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Summon a command-line panel on any webpage for quick navigation, commands, and searches."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में CBox एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}