Expensify Downloader

Batch download expense reports from expensify.com

什麼是Expensify Downloader?

Expensify Downloader是由Yuriy Tumakha開發的Chrome擴展程式,該擴展的主要功能是“Batch download expense reports from expensify.com”。

擴展截圖

screenshot

下載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.                    

擴展基本資訊

名稱 Expensify Downloader Expensify Downloader
ID kdeadmffaednfopgcacmpijpeoijhgln
官方網址 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"
    }
}