Chrome Terminal

A Chrome Extension to execute customized commands in the style of Terminal/Command Prompt/Command Line/Power Shell

Chrome Terminal là gì?

Chrome Terminal là một tiện ích mở rộng Chrome được phát triển bởi Pablo Lion, và tính năng chính của nó là "A Chrome Extension to execute customized commands in the style of Terminal/Command Prompt/Command Line/Power Shell".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chrome Terminal

Tải xuống các tệp mở rộng Chrome Terminal dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        **IMPORTANT**: This is not a Chrome/Google Official extension.
A Chrome Extension that offers an interface, with style of Terminal/Command Prompt/Command Line/Power Shell, to execute customized commands. The interface can be accessed in three ways.

======== TARGET AUDIENCE ========
- Myself 
- Keyboard heavy users: programmers, gamers ...
- Productivists, who learn for more productivity

======== FUNCTION ========
- Pop-up, with default hotkey [Alt]+[T], shows a Terminal style interface.
- Overrides new tab page to a Terminal style interface, with hotkeys to access your top sites.
- Input [T],[Tab] in address bar(omnibox), then the omnibox will become an inline command input box.

In Terminal style interface / omnibox, you can use text-based command and do whatever you are allowed (limited functionality for now).  Use `man` to see all command available. I personally create a lot of aliases and open website with them.

======== SETTINGS & DATA ========
Chrome will clear all your settings on uninstall, so be careful. Alse you can play with them in the exported JSON file. (backup, edit, etc.) The dev team will not store or backup any of your data of settings.

======== IDEA BEHIND TL;DR ========
Control all via keyboard and create shortcuts for all frequently used.
Keep user privacy 100% safe by not looking at it.
Make a good UI, so everything stays clear, 0 confusion.
Personal practice and self-test of react skill.
Planning on share/recommend aliases feature when there are 20+ users.
Thinking if URL aliases should be added to bookmark programmingly, or keep it mannually.

For Feedback/Feature Request/Join Dev/Donate, please contact: [email protected]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chrome Terminal Chrome Terminal
ID ejmpoclnkkdepgggmppdbjpblncajlno
URL Chính Thức https://chromewebstore.google.com/detail/chrome-terminal/ejmpoclnkkdepgggmppdbjpblncajlno
Mô tả A Chrome Extension to execute customized commands in the style of Terminal/Command Prompt/Command Line/Power Shell
Kích Thước Tệp 76.08 KB
Số Lần Cài Đặt 3,709
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-07-25
Ngày Phát Hành 2021-07-14
Đánh Giá 2.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Pablo Lion
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0",
    "author": "Pablo LION",
    "background": {
        "scripts": [
            "js\/vendor.js",
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "128": "Chrome-terminal-icon-128.png"
        },
        "default_popup": "popup.html"
    },
    "chrome_url_overrides": {
        "newtab": "newtab.html"
    },
    "commands": {
        "_execute_browser_action": {
            "description": "Show Chrome Terminal pop-up",
            "suggested_key": {
                "default": "Alt+T",
                "mac": "Alt+T"
            }
        }
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "A Chrome Extension to execute customized commands in the style of Terminal\/Command Prompt\/Command Line\/Power Shell",
    "icons": {
        "128": "Chrome-terminal-icon-128.png"
    },
    "manifest_version": 2,
    "name": "Chrome Terminal",
    "offline_enabled": true,
    "omnibox": {
        "keyword": "t"
    },
    "optional_permissions": [
        "*:\/\/*\/*"
    ],
    "options_ui": {
        "chrome_style": false,
        "page": "options.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "topSites",
        "chrome:\/\/favicon\/"
    ]
}