Script Keeper
Save and load drug lists from medicare.gov.
Co to jest Script Keeper?
Script Keeper to rozszerzenie Chrome opracowane przez Script Keeper, a jego główną funkcją jest „Save and load drug lists from medicare.gov.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Script Keeper
Pobierz pliki rozszerzeń Script Keeper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Script Keeper |
ID | oibkmifcgjkkfadphlimdeaephokhjkc |
Oficjalny URL | https://chromewebstore.google.com/detail/script-keeper/oibkmifcgjkkfadphlimdeaephokhjkc |
Opis | Save and load drug lists from medicare.gov. |
Rozmiar pliku | 1.19 MB |
Liczba instalacji | 68 |
Aktualna Wersja | 1.2.6 |
Ostatnia Aktualizacja | 2023-11-30 |
Data Publikacji | 2021-07-09 |
Ocena | 5.00/5 Łącznie 4 Oceny |
Deweloper | Script Keeper |
[email protected] | |
Typ Płatności | in_app |
Strona Rozszerzenia | https://www.rxscriptkeeper.com |
Adres URL Strony Pomocy | https://www.rxscriptkeeper.com |
Adres URL Strony Polityki Prywatności | https://static1.squarespace.com/static/609ae7562013d65983081424/t/60d7ce89dc4c9a12261ea16b/1624755849329/Script+Keeper+Privacy+Policy+-+June+26+2021.pdf |
Obsługiwane Języki | 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'" } } |