Octohint

IntelliSense hint for GitHub

Octohintคืออะไร?

Octohint เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Rongjian Zhang และคุณลักษณะหลักของมันคือ "IntelliSense hint for GitHub"

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

screenshot
screenshot

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

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

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

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