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 |
| 官方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 |
| 电子邮箱 | [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"
}
}
} | |