Open Github/Bitbucket in editor
Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!
Cos'è Open Github/Bitbucket in editor?
Open Github/Bitbucket in editor è un'estensione di Chrome sviluppata da a7madgamal, e la sua funzione principale è "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Open Github/Bitbucket in editor
Scarica i file di estensione Open Github/Bitbucket in editor in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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/
Informazioni di Base sull'Estensione
Nome | Open Github/Bitbucket in editor |
ID | epklehdbjbicoeeebecaeeeceflgpmga |
URL Ufficiale | https://chromewebstore.google.com/detail/open-githubbitbucket-in-e/epklehdbjbicoeeebecaeeeceflgpmga |
Descrizione | Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come! |
Dimensione del File | 50.72 KB |
Conteggio Installazioni | 161 |
Versione Corrente | 1.2.1 |
Ultimo Aggiornamento | 2022-11-22 |
Data di Pubblicazione | 2019-12-12 |
Sviluppatore | a7madgamal |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/a7madgamal/open_github_in_editor |
URL della Pagina di Aiuto | https://github.com/a7madgamal/open_github_in_editor |
Lingue Supportate | 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" } } } |