UbiChr - Ubiquity for Chrome

Revived Ubiquity for Chrome

UbiChr - Ubiquity for Chrome란 무엇입니까?

UbiChr - Ubiquity for Chrome은(는) rostok에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Revived Ubiquity for Chrome"입니다.

확장 프로그램 스크린샷

screenshot

UbiChr - Ubiquity for Chrome 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

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