GitHub Sync Fork
One-Click Fork Sync
什么是GitHub Sync Fork?
GitHub Sync Fork是由whizzzkid开发的Chrome扩展程序,该扩展的主要功能是“One-Click Fork Sync”。
扩展截图
下载GitHub Sync Fork扩展crx文件
下载GitHub Sync Fork扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Adds the sync fork button on github to sync the changes from upstream. Source: https://github.com/whizzzkid/github-sync-fork-chrome-ext Wiki: https://github.com/whizzzkid/github-sync-fork-chrome-ext/wiki Report: https://github.com/whizzzkid/github-sync-fork-chrome-ext/issues/new
扩展基本信息
名称 | GitHub Sync Fork |
ID | omjaffmdnnkgmbbjmdalehkjcaklleii |
官方URL | https://chromewebstore.google.com/detail/github-sync-fork/omjaffmdnnkgmbbjmdalehkjcaklleii |
简介 | One-Click Fork Sync |
文件大小 | 12.59 KB |
安装次数 | 28 |
当前版本 | 0.3.0 |
更新时间 | 2020-07-14 |
上架时间 | 2020-05-27 |
评分 | 4.00/5 共1次评分 |
开发者 | whizzzkid |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/whizzzkid/github-sync-fork-chrome-ext |
帮助页面URL | https://github.com/whizzzkid/github-sync-fork-chrome-ext/issues/new/choose |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "GitHub Sync Fork", "description": "One-Click Fork Sync", "version": "0.3.0", "permissions": [ "*:\/\/github.com\/*" ], "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/github.com\/*" ], "js": [ "gsf.js" ], "run_at": "document_end" } ], "icons": { "16": "GSF16.png", "48": "GSF48.png", "128": "GSF128.png" } } |