iMean

iMean

Record workflows and transform them into interactive tutorials on other people's browsers. All done within seconds.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "iMean",
  "version": "1.1.2",
  "description": "Record workflows and transform them into interactive tutorials on other people's browsers. All done within seconds.",
  "icons": {
    "16": "icon.png",
    "48": "icon.png",
    "128": "icon.png"
  },
  "background": {
    "service_worker": "./js/background.js"
  },
  "action": {},
  "externally_connectable": {
    "matches": [
      "*://localhost:*/*",
      "*://imean.tech/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "./css/all.css"
      ],
      "js": [
        "./js/all.js"
      ],
      "all_frames": true,
      "run_at": "document_start"
    }
  ],
  "permissions": [
    "activeTab",
    "storage",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/images/*",
        "/js/inject.js",
        "/sdk/*"
      ],
      "matches": [
        "<all_urls>"
      ],
      "extension_ids": []
    }
  ],
  "homepage_url": "https://imean.tech",
  "host_permissions": [
    "<all_urls>",
    "http://*/*",
    "https://*/*"
  ],
  "default_locale": "en",
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}