Gyde Walkthrough Creator

Gyde Walkthrough Creator

Create step by step walkthroughs easily for your Application.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Gyde Walkthrough Creator",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAtV8ogXz5rMB608jvQ/7B4lUJbpjcVGLUqcCh/InemJhSeRA+niFjoU8nOlN061e5n3J606Wb97cQmC/FFHkiOTULoLxpC+T1bhLBf8SOlVm5rkbewIIDnJmaoSgCuvf6j5mWrwGVWjlj4RM0ND6hclGCK6McdkzWeOGvpezvtD+oXF8S+FZ7WSLN/AudRmTkUeDqbmgTIIOl9EYm1HmV6oRFML+gKPQgY0wQ5VVUw+1M1ewsdEfOMUNjgKa7IxpRnj9q9juKEQ7M6q+6fXEzlV9L36XPB1Tf63DfXMUSTwLDDMIS70cv1I1X20dTihr2yYrWSWdVYVuLFs181cMmAQIDAQAB",
  "version": "1.3.0",
  "description": "Create step by step walkthroughs easily for your Application.",
  "icons": {
    "485": "logo485.png"
  },
  "browser_action": {
    "default_title": "Create step by step walkthroughs for your Application."
  },
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "web_accessible_resources": [
    "jquery.min.js",
    "sprite-green.png",
    "sprite-orange.png",
    "classic_theme.css",
    "fontawesome.js",
    "simmer.js",
    "simmerAlternative.js",
    "magic-wand.png"
  ],
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "permissions": [
    "http://*/*",
    "https://*/*",
    "storage",
    "desktopCapture",
    "activeTab",
    "<all_urls>"
  ],
  "externally_connectable": {
    "matches": [
      "https://*.gyde.ai/*",
      "http://localhost:3001/*"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "hopscotch.min.css",
        "Gydeflows.css",
        "classic_theme.css"
      ],
      "js": [
        "jquery.min.js",
        "hopscotch.min.js",
        "simmer.js",
        "simmerAlternative.js",
        "Gydeflows.js",
        "fontawesome.js"
      ],
      "all_frames": false
    }
  ]
}