Expensify Downloader
Batch download expense reports from expensify.com
Vad är Expensify Downloader?
Expensify Downloader är en Chrome-tillägg utvecklad av Yuriy Tumakha, och dess huvudfunktion är "Batch download expense reports from expensify.com".
Tilläggsskärmbilder
Ladda ner Expensify Downloader-förlängningens CRX-fil
Ladda ner Expensify Downloader-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | kdeadmffaednfopgcacmpijpeoijhgln |
| Officiell webbadress | https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln |
| Beskrivning | Batch download expense reports from expensify.com |
| Filstorlek | 19.22 KB |
| Antal Installationer | 190 |
| Aktuell Version | 0.1.4 |
| Senast Uppdaterad | 2021-06-29 |
| Publiceringsdatum | 2020-06-05 |
| Betyg | 5.00/5 Totalt 1 Betyg |
| Utvecklare | Yuriy Tumakha |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/tumakha/expensify-downloader-chrome |
| Hjälpsida URL | https://github.com/tumakha/expensify-downloader-chrome/issues |
| Stödda Språk | 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"
}
} | |