Trickry

Trickry

Ask any question, and Trickry the new AI-powered extension will answer.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Trickry",
  "description": "Ask any question, and Trickry the new AI-powered extension will answer.",
  "version": "1.2.1",
  "permissions": [
    "storage",
    "alarms",
    "contextMenus"
  ],
  "action": {
    "default_icon": "assets/logo.png",
    "default_popup": "popup/login/popup.html"
  },
  "icons": {
    "16": "assets/logo.png",
    "48": "assets/logo.png",
    "128": "assets/logo.png"
  },
  "background": {
    "service_worker": "background/auth.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "content/style.css"
      ],
      "js": [
        "content/popup.js"
      ],
      "all_frames": true
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/infoProvider.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/selection.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content/acellus.js",
        "content/zybook.js"
      ]
    },
    {
      "matches": [
        "https://*/mod/quiz/*"
      ],
      "js": [
        "content/moodle.js"
      ]
    },
    {
      "matches": [
        "https://redmenta.com/*/solve*"
      ],
      "js": [
        "content/redmenta.js"
      ]
    },
    {
      "matches": [
        "https://*/quiz/*"
      ],
      "js": [
        "content/halolearn.js"
      ]
    },
    {
      "matches": [
        "https://*/ultra/courses/*/outline*"
      ],
      "all_frames": true,
      "js": [
        "content/blackboard.js"
      ]
    },
    {
      "matches": [
        "https://*/*/quizzing/user/attempt/quiz_attempt_page_auto.d2l*"
      ],
      "all_frames": true,
      "js": [
        "content/brightspace.js"
      ]
    },
    {
      "matches": [
        "https://*/courses/*/quizzes/*/take"
      ],
      "js": [
        "content/canvas.js"
      ]
    },
    {
      "matches": [
        "<all_urls>"
      ],
      "all_frames": true,
      "js": [
        "content/eventlisteners.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "assets/full-logo.png"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/line.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/close.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/star.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/booklet.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/trickry-logo.svg"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "content/inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/trickry_2.gif"
      ],
      "matches": [
        "<all_urls>"
      ]
    },
    {
      "resources": [
        "assets/textanim.gif"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ]
}