RxHistory

Price history as a spreadsheet

RxHistory란 무엇입니까?

RxHistory은(는) Penn Hackers에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Price history as a spreadsheet"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

RxHistory 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
            ]
        }
    ]
}