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文件

下载Script Keeper扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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'"
    }
}