Github 404 Breakdown

Explains why GitHub returned a 404

Github 404 Breakdownとは何ですか?

Github 404 BreakdownはSidney Nemzerによって開発されたChromeの拡張機能で、その主な機能は「Explains why GitHub returned a 404」です。

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

screenshot

Github 404 Breakdown拡張機能のCRXファイルをダウンロード

Github 404 Breakdown拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        When you visit a page that doesn't exist on GitHub, you're left wondering where to go.

This extension shows which part of the URL is OK, and where the 404 occurred, allowing easy navigation to the existing resource.

Please note that this extension was not created by GitHub.

Browse the source code or submit issues:

https://github.com/SidneyNemzer/github-404-breakdown                    

拡張機能の基本情報

名前 Github 404 Breakdown Github 404 Breakdown
ID pnhdlhabpckpibnkkddmgcimdejbljge
公式URL https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge
説明 Explains why GitHub returned a 404
ファイルサイズ 11.84 KB
インストール数 48
現在のバージョン 3.2
最終更新日 2022-12-17
公開日 2019-10-10
評価 5.00/5 合計 2 レビュー
開発者 Sidney Nemzer
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/SidneyNemzer/github-404-breakdown
ヘルプページのURL https://github.com/SidneyNemzer/github-404-breakdown/issues
プライバシーポリシーページのURL https://sidneynemzer.github.io/privacy
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Github 404 Breakdown",
    "description": "Explains why GitHub returned a 404",
    "version": "3.2",
    "icons": {
        "128": "icon.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "github-404-breakdown.js"
            ],
            "matches": [
                "*:\/\/github.com\/*"
            ]
        }
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/github.com\/*"
            ],
            "js": [
                "github-404-breakdown-content-script.js"
            ],
            "css": [
                "github-404-breakdown.css"
            ],
            "all_frames": false
        }
    ]
}