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 |
Eメール | [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" ] } ] } |