GitHub Issues
Browser extension that adds handy tweaks for issues at GitHub.
什么是GitHub Issues?
GitHub Issues是由Richard Fridrich开发的Chrome扩展程序,该扩展的主要功能是“Browser extension that adds handy tweaks for issues at GitHub.”。
扩展截图
下载GitHub Issues扩展crx文件
下载GitHub Issues扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Browser extension that adds a few handy tweaks to issues at GitHub: - Hide label changes. - Hide reassignments. - Hide milestone changes. - Hide emojis. - Hide "+1" comments and display them as a counter/summary. Source code for this extension is available at: https://github.com/fczbkk/github-issues-extension
扩展基本信息
名称 | GitHub Issues |
ID | jlhpeckkndnaidhfihcmlihekebdepgg |
官方URL | https://chromewebstore.google.com/detail/github-issues/jlhpeckkndnaidhfihcmlihekebdepgg |
简介 | Browser extension that adds handy tweaks for issues at GitHub. |
文件大小 | 12.85 KB |
安装次数 | 17 |
当前版本 | 0.3.2 |
更新时间 | 2015-03-13 |
上架时间 | 2015-03-13 |
开发者 | Richard Fridrich |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "GitHub Issues", "version": "0.3.2", "manifest_version": 2, "description": "Browser extension that adds handy tweaks for issues at GitHub.", "icons": { "16": "img\/icon-16.png", "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*\/issues\/*", "*:\/\/*.github.com\/*\/pull\/*" ], "js": [ "content.js" ], "css": [ "content.css" ] } ], "options_page": "options.html", "options_ui": { "chrome_style": true, "page": "options.html" }, "permissions": [ "storage" ] } |