Copying text with URLs to clipboard

I am trying to create a button that allows me to copy the Text.

That text is Dynamically populated.

It is a Biography of a person, they fill out on their profile.

In that bio the user can add URLs and other formating.

I have tried all the plugins and they don’t seem to work. Either they don’t work at all or they don’t copy the URL properly so you can paste it someplace else.

Any help would be amazing.

Example: Chumem | Bio - James Kent

You don’t really need a plugin. Just insert this script in your Page HTML wrapped in <(script)>. Without the parenthesis.

const clipBoard = navigator.clipboard;
clipBoard.writeText("your text here");


image

BTW you’ll want to use a plugin that can do it like this one (JS Injector Action) in order to trigger an event after you do something.

Hope this helps.

let me try