Open Github/Bitbucket in editor
Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!
Was ist Open Github/Bitbucket in editor?
Open Github/Bitbucket in editor ist eine Chrome-Erweiterung, die von a7madgamal entwickelt wurde, und ihr Hauptmerkmal ist "Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!".
Erweiterungsscreenshots
Open Github/Bitbucket in editor-Erweiterungs-CRX-Datei herunterladen
Laden Sie Open Github/Bitbucket in editor-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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/
Grundlegende Informationen zur Erweiterung
Name | Open Github/Bitbucket in editor |
ID | epklehdbjbicoeeebecaeeeceflgpmga |
Offizielle URL | https://chromewebstore.google.com/detail/open-githubbitbucket-in-e/epklehdbjbicoeeebecaeeeceflgpmga |
Beschreibung | Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come! |
Dateigröße | 50.72 KB |
Installationsanzahl | 161 |
Aktuelle Version | 1.2.1 |
Letztes Update | 2022-11-22 |
Veröffentlichungsdatum | 2019-12-12 |
Entwickler | a7madgamal |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/a7madgamal/open_github_in_editor |
Hilfeseite URL | https://github.com/a7madgamal/open_github_in_editor |
Unterstützte Sprachen | 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" } } } |