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
What is 5 minute fork?
5 minute fork is a Chrome extension developed by Remy Sharp / Left Logic, and its main feature is "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".
Extension Screenshots
Download 5 minute fork Extension CRX File
Download 5 minute fork extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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."
Extension Basic Information
Name | 5 minute fork |
ID | idfhgkibldeniiijlnenfhlilhbifbff |
Official URL | https://chromewebstore.google.com/detail/5-minute-fork/idfhgkibldeniiijlnenfhlilhbifbff |
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 |
File Size | 95.7 KB |
Installation Count | 42 |
Current Version | 1.0.17 |
Last Updated | 2015-06-29 |
Publish Date | 2015-06-29 |
Rating | 4.20/5 Total 5 Ratings |
Developer | Remy Sharp / Left Logic |
[email protected] | |
Payment Type | free |
Extension Website | http://5minfork.com |
Privacy Policy Page URL | https://leftlogic.com/privacy/extensions |
Supported Languages | 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" } ] } |