Moves text of your choice across the screen. Can simulate leaves, snow, fireworks, ufos, and more!
Note: Binary files aren't shown on the web site. To see all files, please download the extension zipfile.
EGO-L-002 warning
objects created by extension should be destroyed in disable()
Objects assigned in `enable()` are missing matching `.destroy()` calls in `disable()` or its helper methods.
extension.js:513
this.featToggle = new FeatureToggle(this, this.fim)
EGO-L-005 warning
owned object references should be released in disable()
Owned references that are cleaned up in `disable()` should also be released with `null` or `undefined`.
extension.js:513
this.featToggle = new FeatureToggle(this, this.fim)
EGO-L-003 warning
signals connected by extension should be disconnected in disable()
Signals assigned in `enable()` are missing matching disconnect calls in `disable()` or its helper methods.
extension.js:292
this.settings.connect('changed', this.settingsChanged.bind(this))
| Version | Status |
|---|---|
| 43 | Active |
| 42 | Active |
| 41 | Active |
| 40 | Inactive |
| 39 | Inactive |
| 38 | Inactive |
| 37 | Inactive |
| 36 | Inactive |
| 35 | Inactive |
| 34 | Inactive |
| 33 | Inactive |
| 32 | Inactive |
| 31 | Inactive |
| 30 | Rejected |
| 29 | Inactive |
| 28 | Rejected |
| 27 | Inactive |
| 26 | Rejected |
| 25 | Rejected |
| 24 | Active |
| 23 | Inactive |
| 22 | Inactive |
| 21 | Inactive |
| 20 | Inactive |
| 19 | Inactive |
| 18 | Inactive |
| 17 | Inactive |
| 16 | Inactive |
| 15 | Inactive |
| 14 | Inactive |
| 13 | Rejected |
| 12 | Inactive |
| 11 | Inactive |
| 10 | Inactive |
| 9 | Rejected |
| 8 | Inactive |
| 7 | Inactive |
| 6 | Inactive |
| 5 | Rejected |
| 4 | Rejected |
| 3 | Inactive |
| 2 | Rejected |
| 1 | Rejected |
FYI, simply replacing "ease()" with "easeAsync()" isn't really useful. It allows you to replace onComplete/onStopped callbacks with async code like await this.easeAsync(...); this.finish(); It still works to pass in onComplete/onStopped handlers instead, but then you can just as well use the regular "ease()".