CBox

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

Qu'est-ce que CBox ?

CBox est une extension Chrome développée par jokimina, et sa fonction principale est "Summon a command-line panel on any webpage for quick navigation, commands, and searches.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension CBox

Téléchargez les fichiers d'extension CBox au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        ✨ 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                    

Informations de Base sur l'Extension

Nom CBox CBox
ID cekckmkolmlobfidedolgcppfgbinhmc
URL Officiel https://chromewebstore.google.com/detail/cbox/cekckmkolmlobfidedolgcppfgbinhmc
Description Summon a command-line panel on any webpage for quick navigation, commands, and searches.
Taille du Fichier 186 KB
Nombre d'Installations 345
Version Actuelle 1.0.8
Dernière Mise à Jour 2024-01-05
Date de Publication 2023-12-12
Développeur jokimina
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/jokimina/cbox-chrome-extension
URL de la Page d'Aide https://github.com/jokimina/cbox-chrome-extension
URL de la Page de Politique de Confidentialité https://sites.google.com/view/guage-app/policy/cbox?authuser=0
Langues Prises en Charge 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"
    ]
}