Open Github/Bitbucket in editor
Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!
Open Github/Bitbucket in editorとは何ですか?
Open Github/Bitbucket in editorはa7madgamalによって開発されたChromeの拡張機能で、その主な機能は「Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come!」です。
拡張機能のスクリーンショット
Open Github/Bitbucket in editor拡張機能のCRXファイルをダウンロード
Open Github/Bitbucket in editor拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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/
拡張機能の基本情報
名前 | Open Github/Bitbucket in editor |
ID | epklehdbjbicoeeebecaeeeceflgpmga |
公式URL | https://chromewebstore.google.com/detail/open-githubbitbucket-in-e/epklehdbjbicoeeebecaeeeceflgpmga |
説明 | Opens Github or Bitbucket diff lines locally in your editor. Supports vscode, vscode-insiders and textmate. more to come! |
ファイルサイズ | 50.72 KB |
インストール数 | 161 |
現在のバージョン | 1.2.1 |
最終更新日 | 2022-11-22 |
公開日 | 2019-12-12 |
開発者 | a7madgamal |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://github.com/a7madgamal/open_github_in_editor |
ヘルプページのURL | https://github.com/a7madgamal/open_github_in_editor |
対応言語 | 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" } } } |