GitHub Diff Explorer

The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests

什么是GitHub Diff Explorer?

GitHub Diff Explorer是由alexdodge开发的Chrome扩展程序,该扩展的主要功能是“The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests”。

扩展截图

screenshot

下载GitHub Diff Explorer扩展crx文件

下载GitHub Diff Explorer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension provides:
- Dark mode styles for all supported browsers
- More screen real estate with a full width view and resizable explorer
- Improved review management and organization with collapsible folder views
- Deep links to line references and review comments
- Automatically marking viewed files in the folder view
- Support for all other GitHub PR functionality                    

扩展基本信息

名称 GitHub Diff Explorer GitHub Diff Explorer
ID kagcmhcnjehpeihgmcohmdceffihkglk
官方URL https://chromewebstore.google.com/detail/github-diff-explorer/kagcmhcnjehpeihgmcohmdceffihkglk
简介 The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests
文件大小 110 KB
安装次数 256
当前版本 1.3.0
更新时间 2021-03-09
上架时间 2019-07-26
评分 5.00/5 共4次评分
开发者 alexdodge
电子邮箱 [email protected]
付费类型 free
扩展官网 https://gde.alexdodge.ca/
帮助页面URL https://github.com/alexmdodge/github-diff-explorer/issues
隐私政策页面URL https://gde.alexdodge.ca/privacy-policy.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extName__",
    "default_locale": "en",
    "version": "1.3.0",
    "description": "The GitHub Diff Explorer is a minimalist browser add-on which generates a seamless file explorer in GitHub pull requests",
    "author": "Alex Dodge",
    "short_name": "GitHub Diff Explorer",
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "48": "images\/icon48.png",
            "128": "images\/icon128.png"
        },
        "default_title": "GitHub Diff Explorer",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*"
            ],
            "css": [
                "lib\/gde_styles.css"
            ],
            "js": [
                "lib\/gde_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "https:\/\/github.com\/"
    ],
    "version_name": "1.3.0",
    "offline_enabled": true
}