Github files download
Extension to download Githup single files without downloading the whole repo
什麼是Github files download?
Github files download是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Extension to download Githup single files without downloading the whole repo”。
擴展截圖
下載Github files download擴展crx文件
下載Github files download擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Github files download |
ID | lhfgdmnajofjhhokaobpkkgfjogknfbo |
官方網址 | https://chromewebstore.google.com/detail/github-files-download/lhfgdmnajofjhhokaobpkkgfjogknfbo |
簡介 | Extension to download Githup single files without downloading the whole repo |
檔案大小 | 828 KB |
安裝次數 | 47 |
目前版本 | 0.0.1 |
更新時間 | 2020-03-25 |
上架時間 | 2020-03-25 |
開發者 | Unknown |
付費類型 | free |
支援的語言 | 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'" } |