Sanguine
May you please add:
Landing Page Extension
composer require johnhearfield/flarum-ext-landing-page
https://packagist.org/packages/johnhearfield/flarum-ext-landing-page
Profile Image Crop Extension
composer require wiseclock/flarum-ext-profile-image-crop
https://packagist.org/packages/wiseclock/flarum-ext-profile-image-crop
Flagrow Masquerade Extension
composer require flagrow/masquerade
https://packagist.org/packages/flagrow/masquerade
Media Embed Extension
composer require s9e/flarum-ext-mediaembed
https://discuss.flarum.org/d/647-s9e-mediaembed-embed-videos-and-third-party-content
AutoImage and AutoVideo Extension
composer require s9e/flarum-ext-autoimage
composer require s9e/flarum-ext-autovideo
https://discuss.flarum.org/d/3789-autoimage-autovideo-turn-static-links-into-images-videos
Pages Extension
composer require sijad/flarum-ext-pages
https://discuss.flarum.org/d/2605-pages
In order to prevent users from posting image trackers intending to harvest IP addresses of other users, may you add a Content Security Policy?
Here is my CSP. It allows for youtube, amazon, gravatar, cdjns and a few other site content to be loaded.
If someone tried to embed an tracker pixel hosted on a site that is not included in my CSP, it will not show up and therefore wouldnt work. Something to think about.
add_header Content-Security-Policy
"default-src 'self' https://*.keys-daggers.org https://www.google.com https://*.youtube.com;
script-src 'self' 'unsafe-inline' 'unsafe-eval' https://en.gravatar.com https://cdn.pubnub.com/pubnub.js https://www.gravatar.com https://keys-daggers.org https://pastebin.com https://www.google.com https://www.gstatic.com https://cdnjs.cloudflare.com;
style-src 'self' 'unsafe-inline' https://keys-daggers.org https://cdnjs.cloudflare.com https://netdna.bootstrapcdn.com https://fonts.googleapis.com https://cdnjs.cloudflare.com;
img-src 'self' https://www.gravatar.com https://keys-daggers.org https://unsplash.it https://*.ssl-images-amazon.com https://*.imgur.com https://cdn.jsdelivr.net data:;
font-src 'self' https://keys-daggers.org https://cdnjs.cloudflare.com https://fonts.gstatic.com https://netdna.bootstrapcdn.com;
connect-src 'self' https://*.pubnub.com;
media-src 'self';
object-src 'self';
form-action 'self';
upgrade-insecure-requests;
block-all-mixed-content;";