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.」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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\/*"
    ]
}