Git Up
Move Github repository's readme to the top
什么是Git Up?
Git Up是由Aniket Kudale开发的Chrome扩展程序,该扩展的主要功能是“Move Github repository's readme to the top”。
扩展截图
下载Git Up扩展crx文件
下载Git Up扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension moves the readme of Github Repository to the top.
扩展基本信息
名称 | |
ID | ippcncckpdiaahmmolbilefbldgibmff |
官方URL | https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff |
简介 | Move Github repository's readme to the top |
文件大小 | 10.5 KB |
安装次数 | 30 |
当前版本 | 1.1 |
更新时间 | 2020-09-23 |
上架时间 | 2020-09-20 |
评分 | 1.00/5 共1次评分 |
开发者 | Aniket Kudale |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Git Up", "version": "1.1", "manifest_version": 2, "description": "Move Github repository's readme to the top", "homepage_url": "https:\/\/www.aniket.co", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/github.com\/*" ], "js": [ "js\/content.js" ], "css": [ "css\/style.css" ], "run_at": "document_end" } ], "permissions": [ "https:\/\/github.com\/*" ] } |