RxHistory
Price history as a spreadsheet
RxHistoryとは何ですか?
RxHistoryはPenn Hackersによって開発されたChromeの拡張機能で、その主な機能は「Price history as a spreadsheet」です。
拡張機能のスクリーンショット
RxHistory拡張機能のCRXファイルをダウンロード
RxHistory拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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 拡張機能の基本情報
| 名前 | |
| 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"
]
}
]
} | |