Prolific Assistant
This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. Features -…
Qu'est-ce que Prolific Assistant ?
Prolific Assistant est une extension Chrome développée par https://prolific.com, et sa fonction principale est "This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. Features -…".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Prolific Assistant
Téléchargez les fichiers d'extension Prolific Assistant au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Prolific Assistant |
ID | ocfncbnofopjedoepmekajbgdenadepp |
URL Officiel | https://chromewebstore.google.com/detail/prolific-assistant/ocfncbnofopjedoepmekajbgdenadepp |
Description | This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. Features -… |
Taille du Fichier | 980 KB |
Nombre d'Installations | 85,620 |
Version Actuelle | 4.0.0 |
Dernière Mise à Jour | 2024-03-01 |
Date de Publication | 2020-07-02 |
Évaluation | 2.78/5 Total 353 Évaluations |
Développeur | https://prolific.com |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://www.prolific.com |
Langues Prises en Charge | 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\/*" ] } |