Developer's Download Helper
Download files and folders from GitHub or GitLab via context menu.
Co to jest Developer's Download Helper?
Developer's Download Helper to rozszerzenie Chrome opracowane przez https://lezram.github.io/developers-download-helper-webext, a jego główną funkcją jest „Download files and folders from GitHub or GitLab via context menu.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Developer's Download Helper
Pobierz pliki rozszerzeń Developer's Download Helper 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 is an open source developer tool to make it easier to get files from code sharing platforms. Use the right click context menu to easily download files. Also self-hosted/enterprise instances can be configured in the options.
Podstawowe informacje o rozszerzeniu
Nazwa | Developer's Download Helper |
ID | apchbjkblfhmkohghpnhidldebmpmjnn |
Oficjalny URL | https://chromewebstore.google.com/detail/developers-download-helpe/apchbjkblfhmkohghpnhidldebmpmjnn |
Opis | Download files and folders from GitHub or GitLab via context menu. |
Rozmiar pliku | 156 KB |
Liczba instalacji | 1,579 |
Aktualna Wersja | 0.3.0 |
Ostatnia Aktualizacja | 2021-06-03 |
Data Publikacji | 2020-05-15 |
Ocena | 4.60/5 Łącznie 5 Oceny |
Deweloper | https://lezram.github.io/developers-download-helper-webext |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/lezram/developers-download-helper-webext |
Adres URL Strony Pomocy | https://github.com/lezram/developers-download-helper-webext/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Developer's Download Helper", "short_name": "DeDoHe", "version": "0.3.0", "description": "Download files and folders from GitHub or GitLab via context menu.", "homepage_url": "https:\/\/github.com\/lezram\/developers-download-helper-webext", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "16": "images\/icon-16.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "browser_action": { "default_icon": "images\/icon-48.png", "default_title": "Developer's Download Helper" }, "background": { "scripts": [ "js\/background.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "activeTab", "contextMenus", "downloads", "storage", "notifications", "https:\/\/*.github.com\/*", "https:\/\/*.githubusercontent.com\/*", "https:\/\/gitlab.com\/*" ], "optional_permissions": [ " |