Git Up
Move Github repository's readme to the top
Wat is Git Up?
Git Up is een Chrome-extensie ontwikkeld door Aniket Kudale, en de belangrijkste functie is "Move Github repository's readme to the top".
Extensie Screenshots
Download het CRX-bestand van de extensie Git Up
Download Git Up-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
This extension moves the readme of Github Repository to the top.
Basisinformatie over de Extensie
Naam | |
ID | ippcncckpdiaahmmolbilefbldgibmff |
Officiële URL | https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff |
Beschrijving | Move Github repository's readme to the top |
Bestandsgrootte | 10.5 KB |
Aantal Installaties | 30 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2020-09-23 |
Publicatiedatum | 2020-09-20 |
Beoordeling | 1.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | Aniket Kudale |
[email protected] | |
Betalingswijze | free |
Ondersteunde Talen | 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\/*" ] } |