Git Time Machine
Time machine for files on github
什麼是Git Time Machine?
Git Time Machine是由Patrick Moody開發的Chrome擴展程式,該擴展的主要功能是“Time machine for files on github”。
擴展截圖
下載Git Time Machine擴展crx文件
下載Git Time Machine擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Add a "time machine" button to GitHub file page that lets you view the history of a single file. Click to go back and forward through commits and easily visualize how the code is modified through time. 擴展基本資訊
| 名稱 | |
| ID | cbkeilfjfgflmjhohjkcecfbfbimpmkp |
| 官方網址 | https://chrome.google.com/webstore/detail/git-time-machine/cbkeilfjfgflmjhohjkcecfbfbimpmkp |
| 簡介 | Time machine for files on github |
| 檔案大小 | 119 KB |
| 安裝次數 | 136 |
| 目前版本 | 1.2 |
| 更新時間 | 2015-11-12 |
| 上架時間 | 2015-11-12 |
| 評分 | 4.83/5 共 6 次評分 |
| 開發者 | Patrick Moody |
| 付費類型 | free |
| 擴展官網 | http://www.gittimemachine.com/ |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Git Time Machine",
"version": "1.2",
"description": "Time machine for files on github",
"author": "Patrick Moody",
"content_scripts": [
{
"matches": [
"*:\/\/github.com\/*"
],
"css": [
"time_machine_button.css"
],
"js": [
"time_machine_button.js"
]
}
],
"permissions": [
"tabs"
],
"icons": {
"128": "icon.png"
},
"manifest_version": 2,
"web_accessible_resources": [
"galaxy_button.png"
]
} | |