Treevity

Treevity

Save forests and save money.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Treevity",
  "description": "Save forests and save money.",
  "version": "0.1.0",
  "version_name": "0.1.0 beta",
  "manifest_version": 3,
  "icons": {
    "16": "/icons/icon.png",
    "48": "/icons/icon.png",
    "128": "/icons/icon.png"
  },
  "permissions": [
    "activeTab",
    "storage"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content.css"
      ],
      "exclude_globs": [
        "https://www.google.com/*"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.google.com/search?*"
      ],
      "js": [
        "./static/js/content-google.js"
      ],
      "all_frames": false,
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_popup": "index.html",
    "default_icon": "/icons/icon-disabled.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "bar-iframe.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}