Expensify Downloader
Batch download expense reports from expensify.com
Expensify Downloaderとは何ですか?
Expensify DownloaderはYuriy Tumakhaによって開発されたChromeの拡張機能で、その主な機能は「Batch download expense reports from expensify.com」です。
拡張機能のスクリーンショット
Expensify Downloader拡張機能のCRXファイルをダウンロード
Expensify Downloader拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Go to Chrome Settings (chrome://settings), section "Advanced" => "Downloads",
specify Download directory and disable option "Ask where to save each file before downloading" to avoid popups for each file.
Go to https://www.expensify.com/reports specify the filter to select reports then click on extension icon on top right corner.
It will start downloading all reports selected by the filter. 拡張機能の基本情報
| 名前 | |
| ID | kdeadmffaednfopgcacmpijpeoijhgln |
| 公式URL | https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln |
| 説明 | Batch download expense reports from expensify.com |
| ファイルサイズ | 19.22 KB |
| インストール数 | 190 |
| 現在のバージョン | 0.1.4 |
| 最終更新日 | 2021-06-29 |
| 公開日 | 2020-06-05 |
| 評価 | 5.00/5 合計 1 レビュー |
| 開発者 | Yuriy Tumakha |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/tumakha/expensify-downloader-chrome |
| ヘルプページのURL | https://github.com/tumakha/expensify-downloader-chrome/issues |
| 対応言語 | en-GB |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "Expensify Downloader",
"description": "Batch download expense reports from expensify.com",
"version": "0.1.4",
"minimum_chrome_version": "55",
"homepage_url": "https:\/\/github.com\/tumakha\/expensify-downloader-chrome",
"author": "Yuriy Tumakha",
"background": {
"scripts": [
"js\/background.js"
],
"persistent": false
},
"browser_action": {
"default_icon": "icons\/icon1024.png",
"default_title": "Expensify Downloader"
},
"permissions": [
"tabs",
"notifications",
"https:\/\/www.expensify.com\/*"
],
"content_scripts": [
{
"matches": [
"https:\/\/www.expensify.com\/reports*"
],
"js": [
"js\/report-links.js"
]
}
],
"icons": {
"128": "icons\/icon128.png",
"1024": "icons\/icon1024.png"
}
} | |