UbiShell

Revived Ubiquity as a Shell

UbiShellคืออะไร?

UbiShell เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Unknown และคุณลักษณะหลักของมันคือ "Revived Ubiquity as a Shell"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย UbiShell

ดาวน์โหลดไฟล์ส่วนขยาย UbiShell ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Revived Ubiquity as a Shell.

UbiShell provides you with a shell-like interface to the web, which allows you to effortlessly join disparate services together, without having to manually go to each site.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ UbiShell UbiShell
ID adjgkmlohcjiomjdocdholgkcadbkkam
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/ubishell/adjgkmlohcjiomjdocdholgkcadbkkam
คำอธิบาย Revived Ubiquity as a Shell
ขนาดไฟล์ 470 KB
จำนวนการติดตั้ง 64
เวอร์ชันปัจจุบัน 0.1.2
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
ผู้พัฒนา Unknown
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Svalorzen/UbiShell
URL หน้าช่วยเหลือ https://github.com/Svalorzen/UbiShell
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "applications": {
        "gecko": {
            "id": "[email protected]"
        }
    },
    "name": "UbiShell",
    "short_name": "UbiShell",
    "homepage_url": "https:\/\/github.com\/svalorzen\/UbiShell",
    "author": "svalorzen",
    "version": "0.1.2",
    "description": "Revived Ubiquity as a Shell",
    "content_security_policy": "script-src 'self' 'unsafe-eval' https:\/\/maps.googleapis.com https:\/\/cdnjs.cloudflare.com; object-src 'self'",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "lib\/jquery-3.3.1.min.js",
            "lib\/codemirror-5.37.0\/codemirror.js",
            "lib\/codemirror-5.37.0\/javascript.js",
            "lib\/codemirror-5.37.0\/matchbrackets.js",
            "lib\/codemirror-5.37.0\/search.js",
            "lib\/codemirror-5.37.0\/searchcursor.js",
            "lib\/codemirror-5.37.0\/lint.js",
            "lib\/codemirror-5.37.0\/javascript-lint.js",
            "lib\/jshint-2.9.5.js",
            "utils.js",
            "cmdutils.js",
            "commands.js"
        ]
    },
    "browser_action": {
        "default_title": "UbiShell",
        "default_popup": "popup.html",
        "default_icon": "res\/icon-128.png",
        "browser_style": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true,
        "browser_style": true
    },
    "commands": {
        "_execute_browser_action": {
            "suggested_key": {
                "chromeos": "Ctrl+Space",
                "linux": "Alt+Space",
                "mac": "Command+Space",
                "windows": "Ctrl+Space"
            }
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ]
        }
    ],
    "icons": {
        "128": "res\/icon-128.png"
    },
    "permissions": [
        "http:\/\/*\/",
        "https:\/\/*\/",
        "activeTab",
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "notifications",
        "storage"
    ]
}