Product Fruits Editor

Product Fruits Editor

Product Fruits tours, hints and events editor.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Product Fruits Editor",
  "description": "Product Fruits tours, hints and events editor.",
  "version": "1.3.7",
  "manifest_version": 3,
  "action": {
    "default_popup": "popup.html",
    "default_title": "Edit and preview Product Fruits content in your application."
  },
  "icons": {
    "32": "pf_ico_32.png",
    "48": "pf_ico_48.png",
    "64": "pf_ico_64.png",
    "128": "pf_ico_128.png"
  },
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "declarativeNetRequest",
    "offscreen"
  ],
  "host_permissions": [
    "https://my.productfruits.com/",
    "https://app.productfruits.com/",
    "https://localhost:44384/",
    "<all_urls>"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "selector-panel.html",
        "item-detail-panel.html",
        "dialog-layer.html",
        "tutorial-layer.html",
        "aigen-layer.html",
        "*.woff",
        "pf-scripts/*",
        "3rdparty/*"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/test.png"
      ],
      "matches": [
        "*://my.productfruits.com/*",
        "*://localhost/*",
        "*://app.productfruits.com/*",
        "*://my.ohio.pf.dev/*",
        "*://my-pr.ohio.pf.dev/*",
        "*://my-pr2.ohio.pf.dev/*"
      ]
    }
  ],
  "externally_connectable": {
    "matches": [
      "*://localhost/*",
      "*://app.productfruits.com/*",
      "*://my.productfruits.com/*",
      "*://my.ohio.pf.dev/*",
      "*://my-pr.ohio.pf.dev/*",
      "*://my-pr2.ohio.pf.dev/*"
    ]
  },
  "background": {
    "service_worker": "./static/js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "./static/js/contentCommunicatorIsolated.js"
      ]
    }
  ]
}