Git Diff Flex
Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.
什么是Git Diff Flex?
Git Diff Flex是由pbarnum开发的Chrome扩展程序,该扩展的主要功能是“Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.”。
扩展截图
下载Git Diff Flex扩展crx文件
下载Git Diff Flex扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension adds a pane bezel between a file's diff to expand or contract a side in an effort to make line more readable. 扩展基本信息
| 名称 | |
| ID | deholaolbodagbifbcaghhmjlbekndec |
| 官方URL | https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec |
| 简介 | Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com. |
| 文件大小 | 17.52 KB |
| 安装次数 | 53 |
| 当前版本 | 1.0.5 |
| 更新时间 | 2023-06-28 |
| 上架时间 | 2018-08-30 |
| 评分 | 5.00/5 共1次评分 |
| 开发者 | pbarnum |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 帮助页面URL | https://github.com/pbarnum/git-diff-flex/issues |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Git Diff Flex",
"version": "1.0.5",
"description": "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.",
"permissions": [
"declarativeContent",
"storage"
],
"background": {
"service_scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"*:\/\/*.github.com\/*"
],
"css": [
"git-diff-flex.css"
],
"js": [
"git-diff-flex.js"
]
}
],
"icons": {
"128": "icon_128.png"
},
"action": {
"default_title": "Git Diff Flex",
"default_popup": "options.html"
},
"manifest_version": 3
} | |