Dashboard filter for GitHub
This adds an activity filter menu to GitHub dashboard.
什么是Dashboard filter for GitHub?
Dashboard filter for GitHub是由Mu-An Chiou开发的Chrome扩展程序,该扩展的主要功能是“This adds an activity filter menu to GitHub dashboard.”。
扩展截图
下载Dashboard filter for GitHub扩展crx文件
下载Dashboard filter for GitHub扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This adds an activity filter menu to GitHub.com dashboard page so user can choose to see only the activities they care about.
扩展基本信息
名称 | Dashboard filter for GitHub |
ID | pcnaddhmngnnpookfhhamkelhhakimdg |
官方URL | https://chromewebstore.google.com/detail/dashboard-filter-for-gith/pcnaddhmngnnpookfhhamkelhhakimdg |
简介 | This adds an activity filter menu to GitHub dashboard. |
文件大小 | 6.87 KB |
安装次数 | 575 |
当前版本 | 0.8.8 |
更新时间 | 2022-12-13 |
上架时间 | 2019-05-12 |
评分 | 4.50/5 共6次评分 |
开发者 | Mu-An Chiou |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/muan/github-dashboard |
帮助页面URL | https://github.com/muan/github-dashboard/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Dashboard filter for GitHub", "short_name": "dashboard", "version": "0.8.8", "manifest_version": 3, "description": "This adds an activity filter menu to GitHub dashboard.", "homepage_url": "http:\/\/github.com\/muan\/dashboard", "content_security_policy": { "extension_pages": "script-src 'self'; object-src 'self'" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/", "https:\/\/github.com\/orgs\/*\/dashboard" ], "css": [ "dashboard.css" ], "js": [ "dashboard.js" ] } ], "host_permissions": [ "https:\/\/api.github.com\/*" ] } |