Github 404 Breakdown

Explains why GitHub returned a 404

Github 404 Breakdown là gì?

Github 404 Breakdown là một tiện ích mở rộng Chrome được phát triển bởi Sidney Nemzer, và tính năng chính của nó là "Explains why GitHub returned a 404".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Github 404 Breakdown

Tải xuống các tệp mở rộng Github 404 Breakdown dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Github 404 Breakdown Github 404 Breakdown
ID pnhdlhabpckpibnkkddmgcimdejbljge
URL Chính Thức https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge
Mô tả Explains why GitHub returned a 404
Kích Thước Tệp 11.84 KB
Số Lần Cài Đặt 48
Phiên Bản Hiện Tại 3.2
Cập Nhật Lần Cuối 2022-12-17
Ngày Phát Hành 2019-10-10
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển Sidney Nemzer
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/SidneyNemzer/github-404-breakdown
URL Trang Trợ Giúp https://github.com/SidneyNemzer/github-404-breakdown/issues
URL Trang Chính Sách Bảo Mật https://sidneynemzer.github.io/privacy
Ngôn Ngữ Được Hỗ Trợ 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
        }
    ]
}