Ethiq

Ethiq

Ethiq

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "version": "0.1.9",
  "short_name": "Ethiq",
  "name": "Ethiq",
  "description": "Ethiq",
  "browser_action": {
    "default_title": "Ethiq",
    "default_popup": "popup.html"
  },
  "background": {
    "scripts": [
      "background.bundle.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "icons": {
    "16": "img/icon-16.png",
    "48": "img/icon-48.png",
    "128": "img/icon-128.png"
  },
  "options_page": "options.html",
  "permissions": [
    "storage",
    "unlimitedStorage"
  ],
  "content_security_policy": "script-src 'self' https://*.google-analytics.com; object-src 'self'",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    },
    "edge": {
      "browser_action_next_to_addressbar": true
    }
  }
}