Dashboard filter for GitHub
This adds an activity filter menu to GitHub dashboard.
What is Dashboard filter for GitHub?
Dashboard filter for GitHub is a Chrome extension developed by Mu-An Chiou, and its main feature is "This adds an activity filter menu to GitHub dashboard.".
Extension Screenshots
Download Dashboard filter for GitHub Extension CRX File
Download Dashboard filter for GitHub extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This adds an activity filter menu to GitHub.com dashboard page so user can choose to see only the activities they care about.
Extension Basic Information
Name | Dashboard filter for GitHub |
ID | pcnaddhmngnnpookfhhamkelhhakimdg |
Official URL | https://chromewebstore.google.com/detail/dashboard-filter-for-gith/pcnaddhmngnnpookfhhamkelhhakimdg |
Description | This adds an activity filter menu to GitHub dashboard. |
File Size | 6.87 KB |
Installation Count | 575 |
Current Version | 0.8.8 |
Last Updated | 2022-12-13 |
Publish Date | 2019-05-12 |
Rating | 4.50/5 Total 6 Ratings |
Developer | Mu-An Chiou |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/muan/github-dashboard |
Help Page URL | https://github.com/muan/github-dashboard/issues |
Supported Languages | 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\/*" ] } |