Expensify Downloader
Batch download expense reports from expensify.com
Cos'è Expensify Downloader?
Expensify Downloader è un'estensione di Chrome sviluppata da Yuriy Tumakha, e la sua funzione principale è "Batch download expense reports from expensify.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Expensify Downloader
Scarica i file di estensione Expensify Downloader in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
                        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.                     Informazioni di Base sull'Estensione
| Nome |   |  
| ID | kdeadmffaednfopgcacmpijpeoijhgln | 
| URL Ufficiale | https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln | 
| Descrizione | Batch download expense reports from expensify.com | 
| Dimensione del File | 19.22 KB | 
| Conteggio Installazioni | 190 | 
| Versione Corrente | 0.1.4 | 
| Ultimo Aggiornamento | 2021-06-29 | 
| Data di Pubblicazione | 2020-06-05 | 
| Valutazione | 5.00/5 Totale 1 Valutazioni | 
| Sviluppatore | Yuriy Tumakha | 
| [email protected] | |
| Tipo di Pagamento | free | 
| Sito Web dell'Estensione | https://github.com/tumakha/expensify-downloader-chrome | 
| URL della Pagina di Aiuto | https://github.com/tumakha/expensify-downloader-chrome/issues | 
| Lingue Supportate | 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"
    }
}  |  |