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 |
官方網址 | 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\/*" ] } |