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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 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"
    }
}