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是由Remy Sharp / Left Logic开发的Chrome扩展程序,该扩展的主要功能是“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扩展crx文件
下载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" } ] } |