Github Time Travel
Browse commits by date on Github
什么是Github Time Travel?
Github Time Travel是由Lingua Franca开发的Chrome扩展程序,该扩展的主要功能是“Browse commits by date on Github”。
扩展截图
下载Github Time Travel扩展crx文件
下载Github Time Travel扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds a button to a Github repo's commit log for browsing commits by date. Github: https://github.com/nathancahill/github-time-travel
扩展基本信息
名称 | Github Time Travel |
ID | gdaikofkgknonbdhgomechckcjlcpgpg |
官方URL | https://chromewebstore.google.com/detail/github-time-travel/gdaikofkgknonbdhgomechckcjlcpgpg |
简介 | Browse commits by date on Github |
文件大小 | 14.6 KB |
安装次数 | 85 |
当前版本 | 1.0.1 |
更新时间 | 2015-08-29 |
上架时间 | 2015-08-29 |
开发者 | Lingua Franca |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/nathancahill/github-time-travel |
帮助页面URL | https://github.com/nathancahill/github-time-travel/issues |
隐私政策页面URL | https://linguafran.ca/privacy.html |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Time Travel", "version": "1.0.1", "description": "Browse commits by date on Github", "author": "Nathan Cahill", "permissions": [ "https:\/\/*.github.com\/", "tabs" ], "background": { "persistent": false, "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/*.github.com\/*\/*" ], "css": [ "pikaday\/pikaday.css" ], "js": [ "pikaday\/pikaday.js", "github-time-travel.js" ] } ] } |