Expensify Downloader
Batch download expense reports from expensify.com
Expensify Downloader क्या है?
Expensify Downloader Yuriy Tumakha द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Batch download expense reports from expensify.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Expensify Downloader एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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 |
सहायता पृष्ठ URL | 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" } } |