Grata for Google Chrome

Grata for Google Chrome

Instantly identify companies, contacts, and competitors from any website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Grata for Google Chrome",
  "version": "5.0.1",
  "description": "Instantly identify companies, contacts, and competitors from any website.",
  "permissions": [
    "storage"
  ],
  "options_page": "options.html",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqmWsnuA12hX7UAsGddviCZhtMY6g6C9BRfOZGrL2XxYhml48k0Mt5MBQvRfa8j70yPChOj3hmLPywbonM7MyUTZLVv7faJIeBvlkVtD6xD5zOIGui5sOpnCYxKPlC25PRrxTzIR2Lq/geasbqPwMTuIWuxdii9l2tAq36qRBHFqQYwFlEico/qgIv10bbpqpNubX3CM/PoAe8qn0N/Us5YHT2h8yi5ncpM2I03+Ehb6huzvdT/ATGZvBHmh6/XonQuBhwrSNKliTERgBWQ3YQe/VHGZ6v0oaYe6ar4Zg9pT65ox9TFPSc8AEf4x2vh3TYT7XLOfm2XO/b5XTpqw9CQIDAQAB",
  "icons": {
    "16": "favicon16.png",
    "48": "favicon48.png",
    "128": "favicon128.png"
  },
  "homepage_url": "https://grata.com",
  "offline_enabled": false,
  "background": {
    "service_worker": "background-wrapper.js"
  },
  "action": {},
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "exclude_globs": [
        "*://*.grata.com/*",
        "http://localhost:3000/*",
        "*://grata.com/*"
      ],
      "css": [
        "/css/root.css"
      ],
      "js": [
        "/static/js/content.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/static/css/content.css",
        "/static/media/*",
        "/static/js/options.js",
        "options.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}