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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/SidneyNemzer/github-404-breakdown/issues
عنوان صفحة سياسة الخصوصية 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
        }
    ]
}