VolteX Chrome Extension

VolteX Chrome Extension

Volte supports the cause that matters to you. Install, search and start making the world a better place.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "default_locale": "en",
  "name": "VolteX Chrome Extension",
  "version": "1.0.3",
  "description": "Volte supports the cause that matters to you. Install, search and start making the world a better place.",
  "action": {
    "default_popup": "./src/scripts/popup/popup.html"
  },
  "options_ui": {
    "page": "./src/scripts/options/options.html",
    "open_in_tab": true
  },
  "background": {
    "service_worker": "js/service-worker.js",
    "type": "module"
  },
  "icons": {
    "16": "./assets/images/icon-16.png",
    "32": "./assets/images/icon-32.png",
    "48": "./assets/images/icon-48.png",
    "128": "./assets/images/icon-128.png"
  },
  "permissions": [
    "activeTab",
    "storage",
    "alarms"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://www.google.com/*"
      ],
      "js": [
        "./js/content.js"
      ],
      "css": [
        "./assets/css/content.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./js/notify.js"
      ],
      "css": [
        "./assets/css/tailwind.css"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "./assets/css/notify.css"
      ],
      "run_at": "document_start"
    }
  ],
  "host_permissions": [
    "https://fonts.googleapis.com/*"
  ],
  "commands": {
    "refresh_extension": {
      "suggested_key": {
        "default": "Ctrl+Space"
      },
      "description": "Refresh Extension"
    }
  },
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        "/assets/images/1.png",
        "/assets/images/badge.png",
        "/assets/images/icon-128.png",
        "/assets/images/icon-16.png",
        "/assets/images/icon-32.png",
        "/assets/images/icon-48.png",
        ""
      ]
    }
  ]
}