github-issue-utils
Utilities for GitHub Issues
什么是github-issue-utils?
github-issue-utils是由sirkitree开发的Chrome扩展程序,该扩展的主要功能是“Utilities for GitHub Issues”。
扩展截图
下载github-issue-utils扩展crx文件
下载github-issue-utils扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Finds all users for a GitHub project and creates filter links to their issue queues. As a project manager for many projects which use GitHub, It makes my life easier to look at what issues are assigned to a particular user. GitHub issues does not have a UI for this, but you can craft a URL to show you a list of all issues assigned to a particular user. This extension crafts these URLs for you by turning your "Assigned to me" filter link into a dropdown of "Assigned to" links for each user of your project. ## Changelog 1.4: fixes to extension regarding manifest and changes to github DOM 1.3: fix an incorrect filename resulting in a bad install. 1.2: re-apply our changes after an XHR (which github tends to use a lot) 1.1: fixed issue where elements were added even if we didn't have a valid list of users to operate upon.
扩展基本信息
名称 | github-issue-utils |
ID | fhehiakkggdpbcgknhebkbhiadnpplag |
官方URL | https://chromewebstore.google.com/detail/github-issue-utils/fhehiakkggdpbcgknhebkbhiadnpplag |
简介 | Utilities for GitHub Issues |
文件大小 | 122 KB |
安装次数 | 29 |
当前版本 | 1.4 |
更新时间 | 2014-03-23 |
上架时间 | 2014-03-23 |
评分 | 4.00/5 共1次评分 |
开发者 | sirkitree |
付费类型 | free |
扩展官网 | https://github.com/sirkitree/github-issue-utils |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "1.4", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "icon-16.png", "128": "icon-128.png" }, "default_locale": "en", "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues*", "https:\/\/github.com\/*\/*\/issues", "https:\/\/github.com\/*\/*\/issues\/*\/*" ], "css": [ "styles\/main.css" ], "js": [ "components\/jquery\/jquery.min.js", "main.js" ] } ], "web_accessible_resources": [ "components\/jquery\/jquery.min.map" ] } |