Prolific Daily Summed Submissions

Prolific Daily Summed Submissions

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

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Prolific Daily Summed Submissions",
  "version": "0.4.2",
  "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"
  }
}