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
公式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
Eメール [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\/*"
    ]
}