Expensify Downloader
Batch download expense reports from expensify.com
Co je Expensify Downloader?
Expensify Downloader je rozšíření Chrome vyvinuté Yuriy Tumakha, a jeho hlavní funkcí je „Batch download expense reports from expensify.com“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Expensify Downloader
Stáhněte si soubory rozšíření Expensify Downloader ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Expensify Downloader |
ID | kdeadmffaednfopgcacmpijpeoijhgln |
Oficiální URL | https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln |
Popis | Batch download expense reports from expensify.com |
Velikost souboru | 19.22 KB |
Počet instalací | 190 |
Aktuální Verze | 0.1.4 |
Poslední Aktualizace | 2021-06-29 |
Datum Vydání | 2020-06-05 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Yuriy Tumakha |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/tumakha/expensify-downloader-chrome |
URL Stránky Nápovědy | https://github.com/tumakha/expensify-downloader-chrome/issues |
Podporované Jazyky | 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" } } |