Github Time Travel
Browse commits by date on Github
Hvad er Github Time Travel?
Github Time Travel er en Chrome-udvidelse udviklet af Lingua Franca, og dens hovedfunktion er "Browse commits by date on Github".
Udvidelsesskærmbilleder
Download Github Time Travel-udvidelses-CRX-fil
Download Github Time Travel-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Adds a button to a Github repo's commit log for browsing commits by date. Github: https://github.com/nathancahill/github-time-travel
Grundlæggende oplysninger om udvidelsen
Navn | Github Time Travel |
ID | gdaikofkgknonbdhgomechckcjlcpgpg |
Officiel URL | https://chromewebstore.google.com/detail/github-time-travel/gdaikofkgknonbdhgomechckcjlcpgpg |
Beskrivelse | Browse commits by date on Github |
Filstørrelse | 14.6 KB |
Antal Installationer | 85 |
Nuværende Version | 1.0.1 |
Senest Opdateret | 2015-08-29 |
Udgivelsesdato | 2015-08-29 |
Udvikler | Lingua Franca |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/nathancahill/github-time-travel |
Hjælpeside-URL | https://github.com/nathancahill/github-time-travel/issues |
URL til Fortrolighedspolitik Side | https://linguafran.ca/privacy.html |
Understøttede Sprog | 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" ] } ] } |