Hide whitespaces GitHub
Always hide whitespaces in GitHub
什麼是Hide whitespaces GitHub?
Hide whitespaces GitHub是由Arnaud Barré開發的Chrome擴展程式,該擴展的主要功能是“Always hide whitespaces in GitHub”。
擴展截圖
下載Hide whitespaces GitHub擴展crx文件
下載Hide whitespaces GitHub擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
When navigating to the files tab on pull request reviews, append the url with ?w=1 to enable the "hide whitespace changes" option 擴展基本資訊
| 名稱 | |
| ID | nafhbcekbgodfnjpnobmbiajjpgmibnc |
| 官方網址 | https://chromewebstore.google.com/detail/hide-whitespaces-github/nafhbcekbgodfnjpnobmbiajjpgmibnc |
| 簡介 | Always hide whitespaces in GitHub |
| 檔案大小 | 10.26 KB |
| 安裝次數 | 57 |
| 目前版本 | 0.6.0 |
| 更新時間 | 2022-08-09 |
| 上架時間 | 2020-06-08 |
| 評分 | 5.00/5 共 2 次評分 |
| 開發者 | Arnaud Barré |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/ArnaudBarre/hide-whitespaces-github |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Hide whitespaces GitHub",
"version": "0.6.0",
"description": "Always hide whitespaces in GitHub",
"permissions": [
"https:\/\/github.com\/**"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/**"
],
"run_at": "document_start",
"js": [
"hide-whitespaces.js"
]
}
],
"icons": {
"128": "icon.png"
}
} | |