Expensify Downloader
Batch download expense reports from expensify.com
Wat is Expensify Downloader?
Expensify Downloader is een Chrome-extensie ontwikkeld door Yuriy Tumakha, en de belangrijkste functie is "Batch download expense reports from expensify.com".
Extensie Screenshots
Download het CRX-bestand van de extensie Expensify Downloader
Download Expensify Downloader-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
                        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.                     Basisinformatie over de Extensie
| Naam |   |  
| ID | kdeadmffaednfopgcacmpijpeoijhgln | 
| Officiële URL | https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln | 
| Beschrijving | Batch download expense reports from expensify.com | 
| Bestandsgrootte | 19.22 KB | 
| Aantal Installaties | 190 | 
| Huidige Versie | 0.1.4 | 
| Laatst Bijgewerkt | 2021-06-29 | 
| Publicatiedatum | 2020-06-05 | 
| Beoordeling | 5.00/5 Totaal 1 Beoordelingen | 
| Ontwikkelaar | Yuriy Tumakha | 
| [email protected] | |
| Betalingswijze | free | 
| Extensiewebsite | https://github.com/tumakha/expensify-downloader-chrome | 
| Help Pagina-URL | https://github.com/tumakha/expensify-downloader-chrome/issues | 
| Ondersteunde Talen | 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"
    }
}  |  |