Github Download Button
Adds a download button on Github files
Co to jest Github Download Button?
Github Download Button to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Adds a download button on Github files”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github Download Button
Pobierz pliki rozszerzeń Github Download Button 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
When you install this extension, a download button will be added to every GitHub file. Downloading files on GitHub it's a pain and this extension makes the whole process easier
Podstawowe informacje o rozszerzeniu
Nazwa | Github Download Button |
ID | jheiohemapejddjdnfnhldcfhmklgmdg |
Oficjalny URL | https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg |
Opis | Adds a download button on Github files |
Rozmiar pliku | 10.63 KB |
Liczba instalacji | 263 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2021-12-14 |
Data Publikacji | 2021-12-13 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | Unknown |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github Download Button", "version": "1.0.0", "description": "Adds a download button on Github files", "icons": { "19": "icon_19.png", "48": "icon_48.png", "96": "icon_96.png", "128": "icon_128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*.github.com\/*" ], "js": [ "main.js" ] } ], "permissions": [ "*:\/\/*.github.com\/*", "*:\/\/raw.githubusercontent.com\/*" ] } |