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."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

VersaTrial 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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.                    

확장 프로그램 기본 정보

이름 VersaTrial VersaTrial
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": []
        }
    ]
}