Git Diff Flex
Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.
What is Git Diff Flex?
Git Diff Flex is a Chrome extension developed by pbarnum, and its main feature is "Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com.".
Extension Screenshots
Download Git Diff Flex Extension CRX File
Download Git Diff Flex extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Git Diff Flex |
ID | deholaolbodagbifbcaghhmjlbekndec |
Official URL | https://chromewebstore.google.com/detail/git-diff-flex/deholaolbodagbifbcaghhmjlbekndec |
Description | Git Diff Flex adds a draggable pane bezel between two files when comparing diffs! Currently only for github.com. |
File Size | 17.52 KB |
Installation Count | 53 |
Current Version | 1.0.5 |
Last Updated | 2023-06-28 |
Publish Date | 2018-08-30 |
Rating | 5.00/5 Total 1 Ratings |
Developer | pbarnum |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/pbarnum/git-diff-flex/issues |
Supported Languages | 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 } |