Script Keeper

Save and load drug lists from medicare.gov.

Script Keeper란 무엇입니까?

Script Keeper은(는) Script Keeper에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save and load drug lists from medicare.gov."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

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

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Script Keeper is a tool for saving and loading drug lists that are built using the medicare.gov site. Script Keeper aims to improve drug list building workflow by making it quick and easy to save anonymous drug list information                    

확장 프로그램 기본 정보

이름 Script Keeper Script Keeper
ID oibkmifcgjkkfadphlimdeaephokhjkc
공식 URL https://chromewebstore.google.com/detail/script-keeper/oibkmifcgjkkfadphlimdeaephokhjkc
설명 Save and load drug lists from medicare.gov.
파일 크기 1.19 MB
설치 횟수 68
현재 버전 1.2.6
최근 업데이트 2023-11-30
출시 날짜 2021-07-09
평점 5.00/5 총 4 개의 평점
개발자 Script Keeper
이메일 [email protected]
결제 유형 in_app
확장 프로그램 웹 사이트 https://www.rxscriptkeeper.com
도움말 페이지 URL https://www.rxscriptkeeper.com
개인정보 보호 정책 페이지 URL https://static1.squarespace.com/static/609ae7562013d65983081424/t/60d7ce89dc4c9a12261ea16b/1624755849329/Script+Keeper+Privacy+Policy+-+June+26+2021.pdf
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Save and load drug lists from medicare.gov.",
    "version": "1.2.6",
    "name": "Script Keeper",
    "permissions": [
        "storage",
        "activeTab",
        "unlimitedStorage",
        "clipboardWrite",
        "scripting"
    ],
    "options_page": "options.html",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-34.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.medicare.gov\/plan-compare\/*"
            ],
            "run_at": "document_start",
            "js": [
                "fetchSessionStorage.bundle.js"
            ]
        }
    ],
    "manifest_version": 3,
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}