Github 404 Breakdown
Explains why GitHub returned a 404
Что такое Github 404 Breakdown?
Github 404 Breakdown - это расширение Chrome, разработанное Sidney Nemzer, и его основная функция - "Explains why GitHub returned a 404".
Снимки экрана расширения
Скачать файл 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 |
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 } ] } |