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文件

下載Prolific Assistant擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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\/*"
    ]
}