Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
I'm trying to write a userscript using TamperMonkey on Chrome.
I want to use https://github.com/Fil/d3-geo-voronoi so I put this in my script header:
d3 and d3-delaunay are imported correctly but for some reason, d3-geo-voronoi is not. I can see in the chrome dev tools sources tab that the script has been included but the Chrome dev tools console shows that
d3.geoVoronoi
is not defined.If I copy and paste the contents of https://cdn.jsdelivr.net/npm/d3-geo-voronoi@1.6.0/dist/d3-geo-voronoi.min.js into the console,
d3.geoVoronoi
is defined and works as I would expect.Any idea what I'm doing wrong?