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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This is an extension designed to monitor https://www.prolific.com/ for new studies and alert you when it finds them. Features -…"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Prolific Assistant एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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\/*" ] } |