Expensify Downloader
Batch download expense reports from expensify.com
Expensify Downloaderคืออะไร?
Expensify Downloader เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Yuriy Tumakha และคุณลักษณะหลักของมันคือ "Batch download expense reports from expensify.com"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Expensify Downloader
ดาวน์โหลดไฟล์ส่วนขยาย 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.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Expensify Downloader |
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" } } |