UWorld Answer Viewer
An extension to render content from UWorld practice tests in simple HTML
Что такое UWorld Answer Viewer?
UWorld Answer Viewer - это расширение Chrome, разработанное haining.cpp, и его основная функция - "An extension to render content from UWorld practice tests in simple HTML".
Снимки экрана расширения
Скачать файл CRX расширения UWorld Answer Viewer
Скачайте файлы расширений UWorld Answer Viewer в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Renders html in an easy to view popup. Once an "explanation" tab is visible, click the icon to view it. This does not show you answers before they are visible on the page.
Основная информация о расширении
Название | UWorld Answer Viewer |
ID | egpahfipapmlaigkoidigehpkehghcfl |
Официальный URL | https://chromewebstore.google.com/detail/uworld-answer-viewer/egpahfipapmlaigkoidigehpkehghcfl |
Описание | An extension to render content from UWorld practice tests in simple HTML |
Размер файла | 8.9 KB |
Количество установок | 106 |
Текущая Версия | 1.0.2 |
Последнее Обновление | 2023-01-04 |
Дата публикации | 2022-12-11 |
Разработчик | haining.cpp |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "UWorld Answer Viewer", "version": "1.0.2", "description": "An extension to render content from UWorld practice tests in simple HTML", "manifest_version": 3, "content_scripts": [ { "matches": [ "https:\/\/apps.uworld.com\/courseapp\/*\/testinterface\/launchtest\/*" ], "js": [ "text_grab.js" ] } ], "action": { "default_popup": "popup.html" }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |