Octohint

IntelliSense hint for GitHub

Octohint là gì?

Octohint là một tiện ích mở rộng Chrome được phát triển bởi Rongjian Zhang, và tính năng chính của nó là "IntelliSense hint for GitHub".

Ả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 Octohint

Tải xuống các tệp mở rộng Octohint 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

                        Octohint adds IntelliSense hint to GitHub.

With Octohint installed, when you view code at GitHub (For example this demo), you'll get features as follows:

- Mouse Hover: Show information of current token
- Left Click: Show all references of current token
- [⌘] + Click: Go to definition of current token (For Windows and Linux user, use [Ctrl] instead)

Octohint is a pure client thing. All code analysis are performed at your browser, which means your code and actions log like click, mousemove will never be sent to any server.

Source code:
https://github.com/pd4d10/octohint

Report issues:
https://github.com/pd4d10/octohint/issues/new                    

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

Tên Octohint Octohint
ID hbkpjkfdheainjkkebeoofkpgddnnbpk
URL Chính Thức https://chromewebstore.google.com/detail/octohint/hbkpjkfdheainjkkebeoofkpgddnnbpk
Mô tả IntelliSense hint for GitHub
Kích Thước Tệp 1.04 MB
Số Lần Cài Đặt 4,694
Phiên Bản Hiện Tại 2.0.9
Cập Nhật Lần Cuối 2022-02-04
Ngày Phát Hành 2018-12-25
Đánh Giá 4.60/5 Tổng số 10 Đánh Giá
Nhà Phát Triển Rongjian Zhang
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/pd4d10/octohint
URL Trang Trợ Giúp https://github.com/pd4d10/octohint
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Octohint",
    "version": "2.0.9",
    "description": "IntelliSense hint for GitHub",
    "homepage_url": "https:\/\/github.com\/pd4d10\/octohint",
    "icons": {
        "128": "icons\/logo.png"
    },
    "background": {
        "scripts": [
            "dist\/background.js"
        ],
        "persistent": false
    },
    "permissions": [
        "https:\/\/github.com\/*",
        "https:\/\/gist.github.com\/*",
        "https:\/\/gitlab.com\/*",
        "https:\/\/bitbucket.org\/*"
    ],
    "optional_permissions": [
        ""
    ],
    "options_ui": {
        "page": "dist\/options.html",
        "chrome_style": true
    },
    "browser_action": {
        "default_icon": "icons\/inactive.png"
    }
}