OctoLinker

OctoLinker – Links together, what belongs together.

OctoLinker란 무엇입니까?

OctoLinker은(는) https://octolinker.vercel.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "OctoLinker – Links together, what belongs together."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/"
    ]
}