Git Time Machine
Time machine for files on github
什么是Git Time Machine?
Git Time Machine是由Patrick Moody开发的Chrome扩展程序,该扩展的主要功能是“Time machine for files on github”。
扩展截图
下载Git Time Machine扩展crx文件
下载Git Time Machine扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Add a "time machine" button to GitHub file page that lets you view the history of a single file. Click to go back and forward through commits and easily visualize how the code is modified through time.
扩展基本信息
名称 | |
ID | cbkeilfjfgflmjhohjkcecfbfbimpmkp |
官方URL | https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp |
简介 | Time machine for files on github |
文件大小 | 119 KB |
安装次数 | 136 |
当前版本 | 1.2 |
更新时间 | 2015-11-12 |
上架时间 | 2015-11-12 |
评分 | 4.83/5 共6次评分 |
开发者 | Patrick Moody |
付费类型 | free |
扩展官网 | http://www.gittimemachine.com/ |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Git Time Machine", "version": "1.2", "description": "Time machine for files on github", "author": "Patrick Moody", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "css": [ "time_machine_button.css" ], "js": [ "time_machine_button.js" ] } ], "permissions": [ "tabs" ], "icons": { "128": "icon.png" }, "manifest_version": 2, "web_accessible_resources": [ "galaxy_button.png" ] } |