Sense

Sense

Get important information instantly. Search across all your apps.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Sense",
  "description": "Get important information instantly. Search across all your apps.",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgSH4IpCWe/veajyW3JMwqvhx2kGb9iTE8rxDX01W4oeCJhW5khuZzAE01yiwc7gmrDTuMf2DLSJpXIY1jEGlhPSxRtosBQF0IIaN5YkGOh+zUYKeJs0WjVmNfQAAIMl92USNVOnb0Hfvc+q8lFmlKOE0/hquBSSCnjxusnbghKd5JToyLsmBzertYlgXJX2mNZB+WdH0AHWyqo+ICijej7xC5xufnWGGfREi4lmycOqq9Ubuq5HZhcYGHU1rj24aWzaoaj+DX4BEF2i1W6susfAPn152i6lN6mjWG4qkG3GrWrhAX5Lx2edK5LwMvkqKgALi12q3ZIBxKvlYg2J4jwIDAQAB",
  "version": "1.4.1.127",
  "icons": {
    "48": "/img/icon48.png",
    "64": "/img/icon64.png",
    "128": "/img/icon128.png"
  },
  "background": {
    "service_worker": "/js/background.js"
  },
  "chrome_url_overrides": {
    "newtab": "/pages/new_tab/index.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "run_at": "document_start",
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "exclude_matches": [
        "https://senseai.online/*"
      ],
      "js": [
        "/js/content.js"
      ]
    },
    {
      "all_frames": true,
      "run_at": "document_start",
      "matches": [
        "https://senseai.online/*"
      ],
      "js": [
        "/js/content_all_frames.js"
      ]
    }
  ],
  "permissions": [
    "storage",
    "tabs",
    "scripting"
  ],
  "host_permissions": [
    "https://*/*"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "*"
      ],
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "extension_ids": []
    }
  ]
}