Acorns Earn

Acorns Earn

Earn money for your future automatically!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "3.2.6",
  "name": "Acorns Earn",
  "short_name": "Acorns FM",
  "incognito": "not_allowed",
  "description": "Earn money for your future automatically!",
  "icons": {
    "16": "assets/icons/active-16.png",
    "19": "assets/icons/active-19.png",
    "38": "assets/icons/active-38.png",
    "48": "assets/icons/active-48.png",
    "128": "assets/icons/active-128.png",
    "256": "assets/icons/active-256.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "webRequest",
    "gcm"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "action": {
    "default_icon": {
      "16": "assets/icons/inactive-16.png",
      "19": "assets/icons/inactive-19.png",
      "38": "assets/icons/inactive-38.png",
      "48": "assets/icons/inactive-48.png",
      "128": "assets/icons/inactive-128.png"
    },
    "default_title": "Acorns Earn"
  },
  "background": {
    "service_worker": "worker.js"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "browser-polyfill.min.js",
        "content.js"
      ]
    },
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start",
      "js": [
        "browser-polyfill.min.js",
        "checkout.js"
      ],
      "all_frames": true
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/*"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    },
    {
      "resources": [
        "oauth.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "shoppay.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}