Github Fork Confirmation
Adds a confirmation dialog to the Github and Gist Fork button.
什麼是Github Fork Confirmation?
Github Fork Confirmation是由Alex Pendleton開發的Chrome擴展程式,該擴展的主要功能是“Adds a confirmation dialog to the Github and Gist Fork button.”。
擴展截圖
下載Github Fork Confirmation擴展crx文件
下載Github Fork Confirmation擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Are you always accidentally forking repositories? I know I am.
This Chrome Extension (or User Script!) will help. It adds a confirm dialog to the Fork button on Github repositories and Gists.
The source code is available on Github. https://github.com/alexcpendleton/GithubForkConfirmation
Updated! August 25, 2015: v1.0.1 - Fixed to accommodate new Github HTML. Sorry for the inconvenience. 擴展基本資訊
| 名稱 | |
| ID | mofjdkidemhjconaodballcmpnaofeod |
| 官方網址 | https://chromewebstore.google.com/detail/github-fork-confirmation/mofjdkidemhjconaodballcmpnaofeod |
| 簡介 | Adds a confirmation dialog to the Github and Gist Fork button. |
| 檔案大小 | 17.08 KB |
| 安裝次數 | 125 |
| 目前版本 | 1.0.1 |
| 更新時間 | 2015-08-26 |
| 上架時間 | 2015-08-25 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | Alex Pendleton |
| 付費類型 | free |
| 擴展官網 | https://github.com/alexcpendleton/GithubForkConfirmation |
| 說明頁面URL | https://github.com/alexcpendleton/GithubForkConfirmation |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Github Fork Confirmation",
"version": "1.0.1",
"manifest_version": 2,
"description": "Adds a confirmation dialog to the Github and Gist Fork button.",
"homepage_url": "https:\/\/github.com\/alexcpendleton\/GithubForkConfirmation",
"icons": {
"16": "icons\/icon16.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"default_locale": "en",
"permissions": [
"https:\/\/github.com\/*",
"https:\/\/gist.github.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/github.com\/*",
"https:\/\/gist.github.com\/*"
],
"js": [
"src\/inject\/inject.js"
]
}
]
} | |