OctoLinker

OctoLinker – Links together, what belongs together.

什麼是OctoLinker?

OctoLinker是由https://octolinker.vercel.app開發的Chrome擴展程式,該擴展的主要功能是“OctoLinker – Links together, what belongs together.”。

擴展截圖

screenshot
screenshot

下載OctoLinker擴展crx文件

下載OctoLinker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/"
    ]
}