Worktual for Google Chrome

Worktual for Google Chrome

Transform your chrome browser into powerful business communications hub by seamlessly integrating Worktual services and Google cloud

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Worktual for Google Chrome",
  "description": "Transform your chrome browser into powerful business communications hub by seamlessly integrating Worktual services and Google cloud",
  "version": "1.7",
  "manifest_version": 3,
  "icons": {
    "16": "logo_16.png",
    "48": "logo_48.png",
    "128": "logo_128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "host_permissions": [
    "http://www.blogger.com/",
    "https://*.gmail.com/"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "index.html"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "./jquery-3.5.1.min.js",
        "./jquery.mark.min.js",
        "./content.js"
      ],
      "css": [
        "./style-worktual.css"
      ],
      "run_at": "document_end",
      "all_frames": false
    }
  ],
  "permissions": [
    "storage"
  ],
  "action": {}
}