Dubble — Free Step-by-Step Guide Creator

Dubble — Free Step-by-Step Guide Creator

Dubble watches how you work, and translates your actions into written step-by-step guides, tutorials, videos and screenshots

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "description": "Dubble watches how you work, and translates your actions into written step-by-step guides, tutorials, videos and screenshots",
  "version": "0.0.27",
  "manifest_version": 3,
  "name": "Dubble — Free Step-by-Step Guide Creator",
  "background": {
    "service_worker": "background.bundle.js"
  },
  "action": {
    "default_title": "Record a new dubble",
    "default_icon": "icon-34.png",
    "default_popup": "popup.html"
  },
  "icons": {
    "128": "icon-128.png"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "tabCapture",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*",
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ],
      "all_frames": true,
      "run_at": "document_start",
      "js": [
        "contentScript.bundle.js"
      ]
    }
  ],
  "content_security_policy": {
    "default": "script-src 'self'; object-src 'self'; script-src-elem 'self' 'unsafe-inline' scrip-src 'blob:'"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "contentScript.styles.css",
        "contentScript.bundle.js",
        "avatar.html",
        "avatar.bundle.js",
        "icon-128.png",
        "icon-34.png",
        "nunito.ttf"
      ],
      "matches": [
        "http://*/*",
        "https://*/*",
        "<all_urls>"
      ]
    }
  ]
}