OctoLinker

OctoLinker – Links together, what belongs together.

OctoLinker क्या है?

OctoLinker https://octolinker.vercel.app द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "OctoLinker – Links together, what belongs together."।

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

screenshot
screenshot

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

crx प्रारूप में OctoLinker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        OctoLinker – a browser extension for GitHub

Navigate through projects on GitHub.com efficiently with OctoLinker. OctoLinker turns language-specific statements like include require or import into links.


Features

Relative files
Navigate through GitHub repositories faster than ever before with a single click. OctoLinker leverages the GitHub API to fetch a tree structure of the repository to link relative files.

Dependency Discovery
Never leave GitHub to manually search for a dependency. OctoLinker links dependencies defined in files like package.json, composer.json,Gemfile or requirements.txt with their related GitHub project page.

API Docs
Forgot the signature of core library method? No worries, OctoLinker links to API docs sucha as nodejs.org/en/docs docs.python.org docs.oracle.com or rubygems.org.

Pull Request
Code review made easy. OctoLinker links dependencies and files on a Pull Request so you can focus on the work that matters – code review.


Source code is available on GitHub: https://github.com/OctoLinker/OctoLinker

Have any questions? Don't hesitate to tweet @OctoLinker or email us [email protected].

Privacy Policy - https://octolinker.vercel.app/privacy



The OctoLinker project is not affiliated with, sponsored by, or endorsed by GitHub Inc.

Copyright (c) 2014–present Stefan Buck Licensed under the MIT license.                    

एक्सटेंशन की मूल जानकारी

नाम OctoLinker OctoLinker
ID jlmafbaeoofdegohdhinkhilhclaklkp
आधिकारिक URL https://chromewebstore.google.com/detail/octolinker/jlmafbaeoofdegohdhinkhilhclaklkp
विवरण OctoLinker – Links together, what belongs together.
फ़ाइल का आकार 184 KB
स्थापना संख्या 24,141
वर्तमान संस्करण 6.10.5
अंतिम अपडेट 2022-11-13
प्रकाशन तिथि 2020-04-30
रेटिंग 4.88/5 कुल 110 रेटिंग्स
डेवलपर https://octolinker.vercel.app
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://octolinker.vercel.app
सहायता पृष्ठ URL https://github.com/OctoLinker/OctoLinker/issues
गोपनीयता नीति पृष्ठ URL https://stefanbuck.com/privacy-policies
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OctoLinker",
    "version": "6.10.5",
    "manifest_version": 2,
    "author": "Stefan Buck",
    "description": "OctoLinker \u2013 Links together, what belongs together.",
    "homepage_url": "https:\/\/octolinker.now.sh\/",
    "icons": {
        "128": "icon.png"
    },
    "minimum_chrome_version": "54",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "47.0"
        }
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_ui": {
        "page": "options.html",
        "chrome_style": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*",
                "https:\/\/gist.github.com\/*"
            ],
            "js": [
                "app.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/github.com\/",
        "https:\/\/api.github.com\/",
        "https:\/\/gist.github.com\/",
        "https:\/\/octolinker-api.now.sh\/"
    ]
}