Expensify Downloader

Batch download expense reports from expensify.com

ما هو Expensify Downloader؟

Expensify Downloader هو إضافة Chrome تم تطويرها بواسطة Yuriy Tumakha، والميزة الرئيسية لها هي "Batch download expense reports from expensify.com".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Expensify Downloader

قم بتنزيل ملفات الامتداد Expensify Downloader بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Expensify Downloader Expensify Downloader
ID kdeadmffaednfopgcacmpijpeoijhgln
عنوان URL الرسمي https://chromewebstore.google.com/detail/expensify-downloader/kdeadmffaednfopgcacmpijpeoijhgln
الوصف Batch download expense reports from expensify.com
حجم الملف 19.22 KB
عدد التثبيتات 190
النسخة الحالية 0.1.4
آخر تحديث 2021-06-29
تاريخ النشر 2020-06-05
تقييم 5.00/5 مجموع تقييمات 1
المطور Yuriy Tumakha
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/tumakha/expensify-downloader-chrome
عنوان صفحة المساعدة https://github.com/tumakha/expensify-downloader-chrome/issues
اللغات المدعومة 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"
    }
}