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
官方網址 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
電子郵箱 [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
        }
    ]
}