ecdiff
Beautifies Git and CVS code patches on the browser.
什麼是ecdiff?
ecdiff是由https://earvinpiamonte.com開發的Chrome擴展程式,該擴展的主要功能是“Beautifies Git and CVS code patches on the browser.”。
擴展截圖
下載ecdiff擴展crx文件
下載ecdiff擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Updates
- Add support for git patch
Features
- Code syntax highlighting
- Light/ dark mode
Usage
1. Open a code patch file on a Chrome browser
2. Click on the ecdiff extension icon
Toggle dark mode on options page: Right click on the ecdiff extension icon then click on "Options".
To format local code patch files at file:///, enable "Allow access to file URLs" on chrome://extensions/?id=jockmidhjggcfnfdinaihmndknopjjij.
Supported
- git diff
- unified diff code patches created with Eclipse IDE
- unified diff code patches created with CVS diff
Open source
https://github.com/earvinpiamonte/ecdiff 擴展基本資訊
| 名稱 | |
| ID | jockmidhjggcfnfdinaihmndknopjjij |
| 官方網址 | https://chromewebstore.google.com/detail/ecdiff/jockmidhjggcfnfdinaihmndknopjjij |
| 簡介 | Beautifies Git and CVS code patches on the browser. |
| 檔案大小 | 484 KB |
| 安裝次數 | 51 |
| 目前版本 | 0.2.0 |
| 更新時間 | 2022-04-27 |
| 上架時間 | 2021-11-05 |
| 開發者 | https://earvinpiamonte.com |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "ecdiff",
"short_name": "ecdiff",
"description": "Beautifies Git and CVS code patches on the browser.",
"author": "Noel Earvin Piamonte",
"version": "0.2.0",
"icons": {
"16": "images\/favicon-16x16.png",
"32": "images\/favicon-32x32.png",
"192": "images\/android-chrome-192x192.png",
"512": "images\/android-chrome-512x512.png"
},
"action": [],
"permissions": [
"activeTab",
"scripting",
"storage"
],
"background": {
"service_worker": "background.js"
},
"options_page": "index.html"
} | |