Notify Library

Very Simple JS Notifications Library

As of 2022-10-26. See the latest version.

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greatest.deepsurf.us/scripts/401626/1109786/Notify%20Library.js

Author
PIZIDAVI
Version
2.0
Created
2020-04-21
Updated
2022-10-26
Size
2.78 KB
License
MIT

Notify Library

Very simple JS Notifications Library with integrated CSS

Options:

  • text string - (required)
  • type string - (optional)
    • success
    • info / information
    • warn / warning
    • error
  • timeout int - optional (default: 5000 ms)

Example

  new Notify({
      text: 'Notification Text',
      type: 'success',
      timeout: false // Sticky Notification
  }).show();