5 minute fork
Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com
Что такое 5 minute fork?
5 minute fork - это расширение Chrome, разработанное Remy Sharp / Left Logic, и его основная функция - "Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com".
Снимки экрана расширения
Скачать файл CRX расширения 5 minute fork
Скачайте файлы расширений 5 minute fork в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
5 minute fork creates a temporary clone of a github repo when the repo owner hasn't hosted their demo. This extension adds a '5 minute fork' button to github repos to quickly and easily clone. As explained on HackerNews: "If a github repo has an index.html file and you click on it, github will show you the source instead of the webpage. 5minfork shows you the webpage so that you can have an idea of what the repo is about."
Основная информация о расширении
Название | 5 minute fork |
ID | idfhgkibldeniiijlnenfhlilhbifbff |
Официальный URL | https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff |
Описание | Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com |
Размер файла | 95.7 KB |
Количество установок | 42 |
Текущая Версия | 1.0.17 |
Последнее Обновление | 2015-06-29 |
Дата публикации | 2015-06-29 |
Рейтинг | 4.20/5 Всего 5 оценок |
Разработчик | Remy Sharp / Left Logic |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://5minfork.com |
URL страницы политики конфиденциальности | https://leftlogic.com/privacy/extensions |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "5 minute fork", "version": "1.0.17", "manifest_version": 2, "homepage_url": "http:\/\/5minfork.com", "description": "Adds a button to GitHub pages so with one click you can view the files of the repo hosted on the web by 5minfork.com", "icons": { "16": "icons\/icon-16.png", "48": "icons\/icon-48.png", "128": "icons\/icon-128.png" }, "content_scripts": [ { "js": [ "inpage.js" ], "matches": [ "http:\/\/*.github.com\/*", "https:\/\/*.github.com\/*" ], "run_at": "document_end" } ] } |