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 |
| Eメール | [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": []
}
]
} | |