Prolific UI

Prolific UI

Updates Prolific UI

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Prolific UI",
  "description": "Updates Prolific UI",
  "version": "1.5.1",
  "browser_action": {
    "default_icon": "icon.png",
    "default_popup": "popup.html"
  },
  "web_accessible_resources": [
    "injected.js"
  ],
  "background": {
    "persistent": true,
    "page": "background.html"
  },
  "permissions": [
    "storage",
    "webRequest",
    "https://*.prolific.co/*"
  ],
  "content_scripts": [
    {
      "js": [
        "jquery-latest.min.js",
        "storage.js",
        "content.js",
        "jquery.tmpl.js"
      ],
      "matches": [
        "https://*.prolific.co/*"
      ]
    }
  ]
}