Github files download
Extension to download Githup single files without downloading the whole repo
Cos'è Github files download?
Github files download è un'estensione di Chrome sviluppata da Unknown, e la sua funzione principale è "Extension to download Githup single files without downloading the whole repo".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Github files download
Scarica i file di estensione Github files download in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Extension to download Github single files without downloading the whole repository , by right clicking the Github file link you will see an option to download the file.
Informazioni di Base sull'Estensione
Nome | Github files download |
ID | lhfgdmnajofjhhokaobpkkgfjogknfbo |
URL Ufficiale | https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo |
Descrizione | Extension to download Githup single files without downloading the whole repo |
Dimensione del File | 828 KB |
Conteggio Installazioni | 47 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2020-03-25 |
Data di Pubblicazione | 2020-03-25 |
Sviluppatore | Unknown |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.1", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "icons\/icon-16.png", "128": "icons\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "storage", "http:\/\/github.com\/*", "https:\/\/github.com\/*", "contextMenus", "downloads" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "http:\/\/github.com\/*" ], "js": [ "scripts\/contentscript.js" ], "css": [], "run_at": "document_end", "all_frames": false } ], "web_accessible_resources": [], "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'" } |