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/ 擴展基本資訊
| 名稱 | |
| ID | epklehdbjbicoeeebecaeeeceflgpmga |
| 官方網址 | 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 |
| 電子郵箱 | [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"
}
}
} | |