Github 404 Breakdown

Explains why GitHub returned a 404

Github 404 Breakdownคืออะไร?

Github 404 Breakdown เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Sidney Nemzer และคุณลักษณะหลักของมันคือ "Explains why GitHub returned a 404"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Github 404 Breakdown

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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
        }
    ]
}