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 |
| 电子邮箱 | [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"
}
} | |