Github Download Button
Adds a download button on Github files
什麼是Github Download Button?
Github Download Button是由Unknown開發的Chrome擴展程式,該擴展的主要功能是“Adds a download button on Github files”。
擴展截圖
下載Github Download Button擴展crx文件
下載Github Download Button擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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
擴展基本資訊
名稱 | Github Download Button |
ID | jheiohemapejddjdnfnhldcfhmklgmdg |
官方網址 | https://chromewebstore.google.com/detail/github-download-button/jheiohemapejddjdnfnhldcfhmklgmdg |
簡介 | Adds a download button on Github files |
檔案大小 | 10.63 KB |
安裝次數 | 263 |
目前版本 | 1.0.0 |
更新時間 | 2021-12-14 |
上架時間 | 2021-12-13 |
評分 | 3.67/5 共 3 次評分 |
開發者 | Unknown |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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\/*" ] } |