Prolific Assistant

This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. Features -…

Prolific Assistant란 무엇입니까?

Prolific Assistant은(는) https://prolific.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. Features -…"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. 

Features
- Desktop notification for every new study found.
- Displays how many studies are available on the extension icon.
- Shows the last time studies were checked for.

Settings
- Alert Sound: The type of sound you want when a new study is found (none, voice, choice of 5 different sounds).
- Alert Volume: The volume level for the alert sound (0-100).

Permissions
- Read and change your data on all prolific.co sites (needed to be able to check for studies)
- Read your browser history (needed to open a prolific tab)
- Display notifications (needed to display notifications)

Note: If you see ! displayed, visit/sign in to Prolific and wait for the check interval for it to clear.                    

확장 프로그램 기본 정보

이름 Prolific Assistant Prolific Assistant
ID ocfncbnofopjedoepmekajbgdenadepp
공식 URL https://chromewebstore.google.com/detail/prolific-assistant/ocfncbnofopjedoepmekajbgdenadepp
설명 This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. Features -…
파일 크기 980 KB
설치 횟수 85,620
현재 버전 4.0.0
최근 업데이트 2024-03-01
출시 날짜 2020-07-02
평점 2.78/5 총 353 개의 평점
개발자 https://prolific.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.prolific.com
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Prolific Assistant",
    "version": "4.0.0",
    "icons": {
        "16": "images\/icon16.png",
        "19": "images\/icon19.png",
        "24": "images\/icon24.png",
        "32": "images\/icon32.png",
        "38": "images\/icon38.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_title": "Prolific Assistant",
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        },
        "default_popup": "pages\/popup.html"
    },
    "background": {
        "scripts": [
            "pages\/background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/app.prolific.co\/*",
                "https:\/\/app.prolific.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "pages\/contentScript.js"
            ]
        }
    ],
    "permissions": [
        "notifications",
        "webRequest",
        "webNavigation",
        "alarms",
        "https:\/\/*.prolific.co\/*",
        "https:\/\/*.prolific.com\/*"
    ]
}