Octohint

IntelliSense hint for GitHub

Octohint란 무엇입니까?

Octohint은(는) Rongjian Zhang에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "IntelliSense hint for GitHub"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Octohint 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        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                    

확장 프로그램 기본 정보

이름 Octohint Octohint
ID hbkpjkfdheainjkkebeoofkpgddnnbpk
공식 URL https://chromewebstore.google.com/detail/octohint/hbkpjkfdheainjkkebeoofkpgddnnbpk
설명 IntelliSense hint for GitHub
파일 크기 1.04 MB
설치 횟수 4,694
현재 버전 2.0.9
최근 업데이트 2022-02-04
출시 날짜 2018-12-25
평점 4.60/5 총 10 개의 평점
개발자 Rongjian Zhang
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/pd4d10/octohint
도움말 페이지 URL https://github.com/pd4d10/octohint
지원되는 언어 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"
    }
}