Greasy Fork is available in English.

Notify Library

Very Simple JS Notifications Library

Verze ze dne 22. 04. 2020. Zobrazit nejnovější verzi.

Tento skript by neměl být instalován přímo. Jedná se o knihovnu, kterou by měly jiné skripty využívat pomocí meta příkazu // @require https://update.greasyfork.org/scripts/401626/796156/Notify%20Library.js

Autor
PIZIDAVI
Verze
1.1.2
Vytvořeno
21. 04. 2020
Aktualizováno
22. 04. 2020
Licence
MIT

Notify Library

Options:

  • text string - (required)
  • type string - (optional)
    • success
    • info / information
    • warn / warning
    • error
  • timeout number - (optional)

Example

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