Github file download
Add a download button for Github and gist
什麼是Github file download?
Github file download是由litefeel開發的Chrome擴展程式,該擴展的主要功能是“Add a download button for Github and gist”。
擴展截圖
下載Github file download擴展crx文件
下載Github file download擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Add a download button for Github and gist
擴展基本資訊
名稱 | Github file download |
ID | mmpjhbgoanojaigomkmoppeogccmjhko |
官方網址 | https://chromewebstore.google.com/detail/github-file-download/mmpjhbgoanojaigomkmoppeogccmjhko |
簡介 | Add a download button for Github and gist |
檔案大小 | 50.94 KB |
安裝次數 | 387 |
目前版本 | 1.5 |
更新時間 | 2015-11-20 |
上架時間 | 2015-11-20 |
評分 | 3.67/5 共 3 次評分 |
開發者 | litefeel |
付費類型 | free |
擴展官網 | https://github.com/lite3/github-file-download |
說明頁面URL | https://github.com/lite3/github-file-download |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Github file download", "description": "Add a download button for Github and gist", "version": "1.5", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "https:\/\/github.com\/", "https:\/\/gist.github.com\/" ], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*", "https:\/\/gist.github.com\/*" ], "js": [ "jquery.min.js", "download-button.js" ], "css": [ "style.css" ], "run_at": "document_end" } ], "offline_enabled": true, "homepage_url": "https:\/\/github.com\/lite3\/github-file-download\/" } |