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.
扩展基本信息
名称 | Github Fork Confirmation |
ID | mofjdkidemhjconaodballcmpnaofeod |
官方URL | 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" ] } ] } |