Prolific Daily Summed Submissions

Calculates a running total of all submissions today in the 'submissions' tab on Prolific.com

Prolific Daily Summed Submissions란 무엇입니까?

Prolific Daily Summed Submissions은(는) Mike Ray에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Calculates a running total of all submissions today in the 'submissions' tab on Prolific.com"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Prolific Daily Summed Submissions 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        I wrote this extension because I was tired of manually editing a spreadsheet in real-time in order to track my submissions goal for the day. 

Try this extension if you are looking for a convenient display of your daily submission rewards on Prolific.com. 

*In order for this extension to work properly, you must be logged into Prolific.com and currently on the 'submissions' tab of your Prolific.com dashboard.                    

확장 프로그램 기본 정보

이름 Prolific Daily Summed Submissions Prolific Daily Summed Submissions
ID jmcjelkbllmmeaeplopkdcbkpbffofpg
공식 URL https://chromewebstore.google.com/detail/prolific-daily-summed-sub/jmcjelkbllmmeaeplopkdcbkpbffofpg
설명 Calculates a running total of all submissions today in the 'submissions' tab on Prolific.com
파일 크기 42.86 KB
설치 횟수 1,008
현재 버전 0.3.7
최근 업데이트 2023-10-21
출시 날짜 2022-06-22
평점 4.60/5 총 5 개의 평점
개발자 Mike Ray
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Prolific Daily Summed Submissions",
    "version": "0.3.7",
    "description": "Calculates a running total of all submissions today in the 'submissions' tab on Prolific.com",
    "permissions": [
        "storage",
        "tabs"
    ],
    "host_permissions": [
        "https:\/\/*.prolific.com\/*"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.prolific.com\/*"
            ],
            "js": [
                "contentScript.js",
                "content_script\/concerns\/ChromeStorage.js",
                "content_script\/concerns\/DomActions.js",
                "content_script\/concerns\/Goalable.js",
                "content_script\/helpers\/DateHelper.js",
                "content_script\/helpers\/ValidationHelper.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "manifest.json",
                "background.js",
                "contentScript.js",
                "styles\/output.css",
                "assets\/icons\/icon32.png",
                "popup\/concerns\/ChromeStorage.js",
                "popup\/concerns\/Currencyable.js",
                "popup\/concerns\/Goalable.js",
                "popup\/helpers\/DateHelper.js",
                "popup\/helpers\/ValidationHelper.js",
                "constants\/popup\/Styles.js"
            ],
            "matches": [
                "https:\/\/*.prolific.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": "assets\/icons\/icon16.png",
            "32": "assets\/icons\/icon32.png",
            "48": "assets\/icons\/icon48.png"
        },
        "default_title": "Calculates a running total of all submissions today in the 'submissions' tab on Prolific.com",
        "default_popup": "popup.html"
    },
    "icons": {
        "16": ".\/assets\/icons\/icon16.png",
        "48": ".\/assets\/icons\/icon48.png",
        "128": ".\/assets\/icons\/icon128.png"
    }
}