Github Time Travel
Browse commits by date on Github
Wat is Github Time Travel?
Github Time Travel is een Chrome-extensie ontwikkeld door Lingua Franca, en de belangrijkste functie is "Browse commits by date on Github".
Extensie Screenshots
Download het CRX-bestand van de extensie Github Time Travel
Download Github Time Travel-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Adds a button to a Github repo's commit log for browsing commits by date. Github: https://github.com/nathancahill/github-time-travel
Basisinformatie over de Extensie
Naam | Github Time Travel |
ID | gdaikofkgknonbdhgomechckcjlcpgpg |
Officiële URL | https://chromewebstore.google.com/detail/github-time-travel/gdaikofkgknonbdhgomechckcjlcpgpg |
Beschrijving | Browse commits by date on Github |
Bestandsgrootte | 14.6 KB |
Aantal Installaties | 85 |
Huidige Versie | 1.0.1 |
Laatst Bijgewerkt | 2015-08-29 |
Publicatiedatum | 2015-08-29 |
Ontwikkelaar | Lingua Franca |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/nathancahill/github-time-travel |
Help Pagina-URL | https://github.com/nathancahill/github-time-travel/issues |
URL van de Privacybeleid Pagina | https://linguafran.ca/privacy.html |
Ondersteunde Talen | 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" ] } ] } |