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 拡張機能の基本情報
| 名前 | |
| ID | mmpjhbgoanojaigomkmoppeogccmjhko |
| 公式URL | 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\/"
} | |