OctoLinker
OctoLinker – Links together, what belongs together.
Что такое OctoLinker?
OctoLinker - это расширение Chrome, разработанное https://octolinker.vercel.app, и его основная функция - "OctoLinker – Links together, what belongs together.".
Снимки экрана расширения
Скачать файл CRX расширения OctoLinker
Скачайте файлы расширений 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 |
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\/" ] } |