Extra GitHub PR Info
Edits to the GitHub UI to make it more informative
什么是Extra GitHub PR Info?
Extra GitHub PR Info是由Meta开发的Chrome扩展程序,该扩展的主要功能是“Edits to the GitHub UI to make it more informative”。
扩展截图
下载Extra GitHub PR Info扩展crx文件
下载Extra GitHub PR Info扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
A collection of GitHub quality of life improvements: See https://github.com/driazati/github-extension for details
扩展基本信息
名称 | Extra GitHub PR Info |
ID | pianlbphbcjkcghlboepagpoilanigff |
官方URL | https://chromewebstore.google.com/detail/extra-github-pr-info/pianlbphbcjkcghlboepagpoilanigff |
简介 | Edits to the GitHub UI to make it more informative |
文件大小 | 38.37 KB |
安装次数 | 231 |
当前版本 | 1.8.3 |
更新时间 | 2021-09-30 |
上架时间 | 2020-03-11 |
开发者 | Meta |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/driazati/github-extension |
帮助页面URL | https://github.com/driazati/github-extension |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Extra GitHub PR Info", "short_name": "Extra GitHub PR Info", "description": "Edits to the GitHub UI to make it more informative", "version": "1.8.3", "author": "pytorch", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "options_ui": { "page": "options.html", "chrome_style": true }, "content_scripts": [ { "matches": [ "*:\/\/github.com\/*\/pulls*", "*:\/\/github.com\/pulls*" ], "js": [ "lib.js", "show_build_status.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/github.com\/*" ], "js": [ "disable_pjax.js" ], "run_at": "document_end" }, { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*", "*:\/\/github.com\/*\/*", "*:\/\/github.com\/*\/*\/commits\/*" ], "js": [ "lib.js", "unminimize_comments.js", "sort_signals.js", "remove_timeline_events.js", "expand_signals_box.js" ], "run_at": "document_start" }, { "matches": [ "*:\/\/github.com\/*\/*\/pull\/*\/files" ], "js": [ "lib.js", "reorder_code_reviews.js" ], "run_at": "document_start" } ], "background": { "scripts": [ "remove_cors.js" ], "persistent": true }, "permissions": [ "storage", "https:\/\/github.com\/*" ] } |