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 擴展基本資訊
| 名稱 | |
| ID | gdaikofkgknonbdhgomechckcjlcpgpg |
| 官方網址 | 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"
]
}
]
} | |