VersaTrial
Helping sites re-imagine their workflow across different technology platforms.
什么是VersaTrial?
VersaTrial是由https://versatrial.io开发的Chrome扩展程序,该扩展的主要功能是“Helping sites re-imagine their workflow across different technology platforms.”。
扩展截图
下载VersaTrial扩展crx文件
下载VersaTrial扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Simple wins in a complex workflow.
This browser extension helps staff working at clinical trial sites to:
★ Supercharge your bookmarks by connecting them to specific clinical trial studies in a Study Organizer that can be shared across your entire organization.
★ Autosave your team's answers to feasibility questionnaires from CROs and pharmaceutical companies to a master Answer Library that is searchable and reference-able. 扩展基本信息
| 名称 | |
| ID | poembcmcnmmolhcnokfmjenjfchogbfa |
| 官方URL | https://chromewebstore.google.com/detail/versatrial/poembcmcnmmolhcnokfmjenjfchogbfa |
| 简介 | Helping sites re-imagine their workflow across different technology platforms. |
| 文件大小 | 1.09 MB |
| 安装次数 | 899 |
| 当前版本 | 2.19.1 |
| 更新时间 | 2024-01-29 |
| 上架时间 | 2023-02-22 |
| 评分 | 5.00/5 共4次评分 |
| 开发者 | https://versatrial.io |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://app.versatrial.io/ |
| 帮助页面URL | https://app.versatrial.io/ |
| 隐私政策页面URL | https://app.versatrial.io/privacy_policy |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "VersaTrial",
"description": "Helping sites re-imagine their workflow across different technology platforms.",
"version": "2.19.1",
"manifest_version": 3,
"icons": {
"16": "\/img\/icons\/16.png",
"32": "\/img\/icons\/32.png",
"48": "\/img\/icons\/48.png",
"128": "\/img\/icons\/128.png"
},
"background": {
"service_worker": "\/js\/background.js",
"type": "module"
},
"action": {
"default_popup": "\/pages\/popup\/index.html",
"default_icons": {
"16": "\/img\/icons\/16.png",
"32": "\/img\/icons\/32.png",
"48": "\/img\/icons\/48.png",
"128": "\/img\/icons\/128.png"
}
},
"content_scripts": [
{
"all_frames": true,
"matches": [
"https:\/\/*\/*"
],
"exclude_matches": [
"https:\/\/versatrial-staging.herokuapp.com\/*",
"https:\/\/app.versatrial.io\/*",
"https:\/\/versatrial.test\/*",
"https:\/\/versatrial.dev\/*"
],
"js": [
"\/js\/launcher.js"
]
},
{
"run_at": "document_start",
"all_frames": true,
"matches": [
"https:\/\/app.versatrial.io\/*"
],
"js": [
"\/js\/app_content.js"
]
},
{
"all_frames": false,
"run_at": "document_idle",
"matches": [
"https:\/\/*\/*"
],
"exclude_matches": [
"https:\/\/versatrial-staging.herokuapp.com\/*",
"https:\/\/app.versatrial.io\/*",
"https:\/\/versatrial.test\/*",
"https:\/\/versatrial.dev\/*"
],
"js": [
"\/js\/initiate_nudges.js"
]
}
],
"options_ui": {
"page": "\/pages\/options\/index.html",
"open_in_tab": false
},
"optional_permissions": [
"bookmarks",
"downloads"
],
"permissions": [
"activeTab",
"alarms",
"cookies",
"contextMenus",
"scripting",
"storage"
],
"host_permissions": [
"https:\/\/*\/*"
],
"web_accessible_resources": [
{
"resources": [
"*"
],
"matches": [
"https:\/\/*\/*"
],
"extension_ids": []
}
]
} | |