RxHistory
Price history as a spreadsheet
RxHistory क्या है?
RxHistory Penn Hackers द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Price history as a spreadsheet"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में RxHistory एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Download a spreadsheet with pricing history for drugs in a drug class on a popular prescription price comparison site, goodrx.com! This extension supports any number of drugs, and processes all prices automatically. Each drug will be on a separate sheet in the spreadsheet, downloads are in XLSX (Excel) format. Prices are all given in USD ($). Dates are in international format, year-month-day (ex: 2017-01-27). Updates: - Option to save spreadsheet as long form. - Include dosage in spreadsheet Author: Adel Qalieh License: GPLv3
एक्सटेंशन की मूल जानकारी
नाम | RxHistory |
ID | nhblpgnkmlajcpfbddnjpnlnplmdldml |
आधिकारिक URL | https://chromewebstore.google.com/detail/rxhistory/nhblpgnkmlajcpfbddnjpnlnplmdldml |
विवरण | Price history as a spreadsheet |
फ़ाइल का आकार | 517 KB |
स्थापना संख्या | 32 |
वर्तमान संस्करण | 2.0.0 |
अंतिम अपडेट | 2017-12-10 |
प्रकाशन तिथि | 2017-12-09 |
डेवलपर | Penn Hackers |
भुगतान के प्रकार | free |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "RxHistory", "version": "2.0.0", "manifest_version": 2, "description": "Price history as a spreadsheet", "homepage_url": "https:\/\/adelqalieh.com", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "js\/FileSaver.min.js", "js\/moment.min.js", "js\/xlsx.full.min.js", "src\/bg\/background.js" ], "persistent": false }, "page_action": { "default_icon": "icons\/icon19.png", "default_title": "Download price history spreasheet" }, "options_ui": { "page": "src\/settings\/options.html", "chrome_style": true }, "permissions": [ "https:\/\/www.goodrx.com\/*", "declarativeContent", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/www.goodrx.com\/*" ], "js": [ "src\/inject\/inject.js" ] } ] } |