Twella

Twella

Curb your online shopping habits!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "version": "2.6.6",
  "name": "Twella",
  "description": "Curb your online shopping habits!",
  "action": {
    "default_icon": {
      "16": "./assets/img/twella_16.png",
      "32": "./assets/img/twella_32.png",
      "48": "./assets/img/twella_48.png",
      "128": "./assets/img/twella_128.png"
    },
    "default_popup": "./html/popups/signin-popup.html"
  },
  "host_permissions": [
    "*://app.twella.io/*"
  ],
  "permissions": [
    "activeTab",
    "unlimitedStorage",
    "storage",
    "cookies",
    "webNavigation",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://app.twella.io/*"
      ],
      "js": [
        "./scripts/content/twella-dashboard.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "*://app.twella.io/*"
      ],
      "resources": [
        "scripts/utils/storage.js"
      ]
    }
  ],
  "background": {
    "service_worker": "./scripts/workers/background.js",
    "type": "module"
  },
  "icons": {
    "16": "./assets/img/twella_16.png",
    "32": "./assets/img/twella_32.png",
    "48": "./assets/img/twella_48.png",
    "128": "./assets/img/twella_128.png"
  }
}