UbiChr - Ubiquity for Chrome

Revived Ubiquity for Chrome

Τι είναι το UbiChr - Ubiquity for Chrome;

Το UbiChr - Ubiquity for Chrome είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον rostok, και η κύρια λειτουργία του είναι "Revived Ubiquity for Chrome".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης UbiChr - Ubiquity for Chrome

Λήψη αρχείων επέκτασης UbiChr - Ubiquity for Chrome σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        UbiChr is "Ubiquity for Chrome" - a revived command line interface that brings lots of useful command shortcuts.

In particular, you can:

* Open a command-like window to execute commands with arguments and preview the results (default Ctrl+Space shortcut must be set manually)
* Open new tabs and pass GET or POST parameters (on appropriate command execution like Wikipedia search, dictionary lookup, text translation, etc.)
* Fetch data via AJAX, process it, and display it on the extension popup preview (for example: IMDB movie lookup, currency converter)
* Alter current pages (highlight keywords, invert or remove colors)
* Add your custom JavaScript commands via a built-in editor in a syntax similar to the original Ubiquity project
* Utilize powerful features of the Chrome extension (inject scripts, access cookies, use alarms, bulk save and zip URLs, filter opened tabs for text or links, ...)
* Share your commands via GitHub Gist

NOTICE: The Ctrl+Space shortcut may need to be manually reassigned in the Chrome add-on management dashboard in order to be used. To do that, use the chrome://extensions/shortcuts URL.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα UbiChr - Ubiquity for Chrome UbiChr - Ubiquity for Chrome
ID mlgfghegijfplmnoplodhgcnhakfpbeb
Επίσημο URL https://chromewebstore.google.com/detail/ubichr-ubiquity-for-chrom/mlgfghegijfplmnoplodhgcnhakfpbeb
Περιγραφή Revived Ubiquity for Chrome
Μέγεθος Αρχείου 368 KB
Αριθμός Εγκαταστάσεων 1,751
Τρέχουσα Έκδοση 0.1.0.53
Τελευταία Ενημέρωση 2023-09-25
Ημερομηνία Δημοσίευσης 2020-06-13
Αξιολόγηση 4.80/5 Συνολικά 5 Αξιολογήσεις
Προγραμματιστής rostok
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/rostok/ubichr/
URL της Σελίδας Πολιτικής Απορρήτου https://github.com/rostok/ubichr/wiki/Privacy-Policy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "UbiChr - Ubiquity for Chrome",
    "short_name": "UbiChr",
    "homepage_url": "https:\/\/github.com\/rostok\/ubichr",
    "author": "rostok",
    "version": "0.1.0.53",
    "description": "Revived Ubiquity for Chrome",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/maps.googleapis.com https:\/\/cdnjs.cloudflare.com https:\/\/unpkg.com https:\/\/cdnjs.com; object-src 'self'",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "lib\/jquery-3.6.0.min.js",
            "utils.js",
            "cmdutils.js",
            "commands.js",
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_title": "UbiChr",
        "default_popup": "popup.html",
        "default_icon": "res\/icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "chromeos": "Ctrl+Space",
                "linux": "Ctrl+Space",
                "mac": "Command+Space",
                "windows": "Ctrl+Space"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "selection.js"
            ]
        }
    ],
    "icons": {
        "128": "res\/icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "activeTab",
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "notifications",
        "storage",
        "alarms",
        "cookies"
    ]
}