Git Up
Move Github repository's readme to the top
What is Git Up?
Git Up is a Chrome extension developed by Aniket Kudale, and its main feature is "Move Github repository's readme to the top".
Extension Screenshots
Download Git Up Extension CRX File
Download Git Up extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
This extension moves the readme of Github Repository to the top.
Extension Basic Information
Name | |
ID | ippcncckpdiaahmmolbilefbldgibmff |
Official URL | https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff |
Description | Move Github repository's readme to the top |
File Size | 10.5 KB |
Installation Count | 30 |
Current Version | 1.1 |
Last Updated | 2020-09-23 |
Publish Date | 2020-09-20 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Aniket Kudale |
[email protected] | |
Payment Type | free |
Supported Languages | 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\/*" ] } |