Octohint

IntelliSense hint for GitHub

Octohint क्या है?

Octohint Rongjian Zhang द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "IntelliSense hint for GitHub"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Octohint एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}