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 | 
| Eメール | [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
}  |  |