Yogiline Scan

Yogiline Scan

This extension allows you to scan any piece of clothing online to check its environmental impact.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Yogiline Scan",
  "description": "This extension allows you to scan any piece of clothing online to check its environmental impact.",
  "version": "2.0.3",
  "manifest_version": 3,
  "icons": {
    "16": "./logo16.png",
    "32": "./logo32.png",
    "48": "./logo48.png",
    "128": "./logo128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "host_permissions": [
    "https://*/*"
  ]
}