Expensify Downloader
Batch download expense reports from expensify.com
Was ist Expensify Downloader?
Expensify Downloader ist eine Chrome-Erweiterung, die von Yuriy Tumakha entwickelt wurde, und ihr Hauptmerkmal ist "Batch download expense reports from expensify.com".
Erweiterungsscreenshots
Expensify Downloader-Erweiterungs-CRX-Datei herunterladen
Laden Sie Expensify Downloader-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Expensify Downloader |
ID | kdeadmffaednfopgcacmpijpeoijhgln |
Offizielle URL | https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln |
Beschreibung | Batch download expense reports from expensify.com |
Dateigröße | 19.22 KB |
Installationsanzahl | 190 |
Aktuelle Version | 0.1.4 |
Letztes Update | 2021-06-29 |
Veröffentlichungsdatum | 2020-06-05 |
Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
Entwickler | Yuriy Tumakha |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/tumakha/expensify-downloader-chrome |
Hilfeseite URL | https://github.com/tumakha/expensify-downloader-chrome/issues |
Unterstützte Sprachen | 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" } } |