Expensify Downloader

Batch download expense reports from expensify.com

Qu'est-ce que Expensify Downloader ?

Expensify Downloader est une extension Chrome développée par Yuriy Tumakha, et sa fonction principale est "Batch download expense reports from expensify.com".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Expensify Downloader

Téléchargez les fichiers d'extension Expensify Downloader au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Expensify Downloader Expensify Downloader
ID kdeadmffaednfopgcacmpijpeoijhgln
URL Officiel https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln
Description Batch download expense reports from expensify.com
Taille du Fichier 19.22 KB
Nombre d'Installations 190
Version Actuelle 0.1.4
Dernière Mise à Jour 2021-06-29
Date de Publication 2020-06-05
Évaluation 5.00/5 Total 1 Évaluations
Développeur Yuriy Tumakha
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/tumakha/expensify-downloader-chrome
URL de la Page d'Aide https://github.com/tumakha/expensify-downloader-chrome/issues
Langues Prises en Charge 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"
    }
}