Git Up
Move Github repository's readme to the top
Co to jest Git Up?
Git Up to rozszerzenie Chrome opracowane przez Aniket Kudale, a jego główną funkcją jest „Move Github repository's readme to the top”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Git Up
Pobierz pliki rozszerzeń Git Up w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension moves the readme of Github Repository to the top.
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | ippcncckpdiaahmmolbilefbldgibmff |
Oficjalny URL | https://chrome.google.com/webstore/detail/git-up/ippcncckpdiaahmmolbilefbldgibmff |
Opis | Move Github repository's readme to the top |
Rozmiar pliku | 10.5 KB |
Liczba instalacji | 30 |
Aktualna Wersja | 1.1 |
Ostatnia Aktualizacja | 2020-09-23 |
Data Publikacji | 2020-09-20 |
Ocena | 1.00/5 Łącznie 1 Oceny |
Deweloper | Aniket Kudale |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | 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\/*" ] } |