Github Time Travel
Browse commits by date on Github
What is Github Time Travel?
Github Time Travel is a Chrome extension developed by Lingua Franca, and its main feature is "Browse commits by date on Github".
Extension Screenshots
Download Github Time Travel Extension CRX File
Download Github Time Travel 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
Adds a button to a Github repo's commit log for browsing commits by date. Github: https://github.com/nathancahill/github-time-travel
Extension Basic Information
Name | Github Time Travel |
ID | gdaikofkgknonbdhgomechckcjlcpgpg |
Official URL | https://chromewebstore.google.com/detail/github-time-travel/gdaikofkgknonbdhgomechckcjlcpgpg |
Description | Browse commits by date on Github |
File Size | 14.6 KB |
Installation Count | 85 |
Current Version | 1.0.1 |
Last Updated | 2015-08-29 |
Publish Date | 2015-08-29 |
Developer | Lingua Franca |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/nathancahill/github-time-travel |
Help Page URL | https://github.com/nathancahill/github-time-travel/issues |
Privacy Policy Page URL | https://linguafran.ca/privacy.html |
Supported Languages | 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" ] } ] } |