Github 404 Breakdown
Explains why GitHub returned a 404
Apa itu Github 404 Breakdown?
Github 404 Breakdown adalah ekstensi Chrome yang dikembangkan oleh Sidney Nemzer, dan fitur utamanya adalah "Explains why GitHub returned a 404".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Github 404 Breakdown
Unduh file ekstensi Github 404 Breakdown dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
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
Informasi Dasar Ekstensi
Nama | Github 404 Breakdown |
ID | pnhdlhabpckpibnkkddmgcimdejbljge |
URL Resmi | https://chromewebstore.google.com/detail/github-404-breakdown/pnhdlhabpckpibnkkddmgcimdejbljge |
Deskripsi | Explains why GitHub returned a 404 |
Ukuran File | 11.84 KB |
Jumlah Instalasi | 48 |
Versi Saat Ini | 3.2 |
Terakhir Diperbarui | 2022-12-17 |
Tanggal Publikasi | 2019-10-10 |
Penilaian | 5.00/5 Total 2 Penilaian |
Pengembang | Sidney Nemzer |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/SidneyNemzer/github-404-breakdown |
URL Halaman Bantuan | https://github.com/SidneyNemzer/github-404-breakdown/issues |
URL Halaman Kebijakan Privasi | https://sidneynemzer.github.io/privacy |
Bahasa yang Didukung | 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 } ] } |