Expensify Downloader
Batch download expense reports from expensify.com
Expensify Downloader là gì?
Expensify Downloader là một tiện ích mở rộng Chrome được phát triển bởi Yuriy Tumakha, và tính năng chính của nó là "Batch download expense reports from expensify.com".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Expensify Downloader
Tải xuống các tệp mở rộng Expensify Downloader dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Expensify Downloader |
ID | kdeadmffaednfopgcacmpijpeoijhgln |
URL Chính Thức | https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln |
Mô tả | Batch download expense reports from expensify.com |
Kích Thước Tệp | 19.22 KB |
Số Lần Cài Đặt | 190 |
Phiên Bản Hiện Tại | 0.1.4 |
Cập Nhật Lần Cuối | 2021-06-29 |
Ngày Phát Hành | 2020-06-05 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Yuriy Tumakha |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/tumakha/expensify-downloader-chrome |
URL Trang Trợ Giúp | https://github.com/tumakha/expensify-downloader-chrome/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |