@ahsdile/canvas-lms-google-analytics-plugindeprecated

Plugin for the Canvas LMS theme app that adds the Google Analytics scripts to Canvas by providing the tracking id

Usage no npm install needed!

<script type="module">
  import ahsdileCanvasLmsGoogleAnalyticsPlugin from 'https://cdn.skypack.dev/@ahsdile/canvas-lms-google-analytics-plugin';
</script>

README

Canvas LMS Google Analytics Plug-in

Plugin for the Canvas LMS theme app that adds the Google Analytics scripts to Canvas by providing the tracking id.

Installation

Using NPM:

npm install @ahsdile/canvas-lms-google-analytics-plugin

Using Yarn:

yarn add @ahsdile/canvas-lms-google-analytics-plugin

Usage

Just import the plug-in and add it to the Canvas app:

import canvas from '@ahsdile/canvas-lms-app';
import googleAnalyticsPlugin from '@ahsdile/canvas-lms-google-analytics-plugin';

canvas.addPlugin(googleAnalyticsPlugin, {
    trackingId: 'UA-123456789-0'
});

canvas.run();