Open Github/Bitbucket in editor
Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!
O que é Open Github/Bitbucket in editor?
Open Github/Bitbucket in editor é uma extensão do Chrome desenvolvida por a7madgamal, e sua principal característica é "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Open Github/Bitbucket in editor
Baixe arquivos de extensão Open Github/Bitbucket in editor no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
Click on diff line numbers in Github or Bitbucket PRs to open the exact file and line in your favorite editor 🤓 open-source, free and super lightweight! Issues? feature requests? >> https://github.com/a7madgamal/open_github_in_editor 🦊 also available for Firefox https://addons.mozilla.org/en-US/firefox/addon/open-github-in-editor/
Informações Básicas da Extensão
Nome | Open Github/Bitbucket in editor |
ID | epklehdbjbicoeeebecaeeeceflgpmga |
URL Oficial | https://chromewebstore.google.com/detail/open-githubbitbucket-in-e/epklehdbjbicoeeebecaeeeceflgpmga |
Descrição | Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come! |
Tamanho do Arquivo | 50.72 KB |
Contagem de Instalações | 161 |
Versão Atual | 1.2.1 |
Última Atualização | 2022-11-22 |
Data de Publicação | 2019-12-12 |
Desenvolvedor | a7madgamal |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/a7madgamal/open_github_in_editor |
URL da Página de Ajuda | https://github.com/a7madgamal/open_github_in_editor |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Open Github\/Bitbucket in editor", "version": "1.2.1", "description": "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!", "manifest_version": 3, "permissions": [ "storage" ], "options_ui": { "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/bitbucket.com\/*", "https:\/\/bitbucket.org\/*" ], "run_at": "document_idle", "js": [ "contentScript.js" ] } ], "background": { "service_worker": "background.js" }, "icons": { "32": "icons\/32.png", "38": "icons\/38.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_specific_settings": { "gecko": { "id": "[email protected]", "strict_min_version": "65.0" } } } |