It's Sina
It's Sina
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
but i want to render a component for each
50 replies
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
this is the App component im selecting all the textareas as they appear
50 replies
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
@louisgv do you know a convinient way of rendering the icons in fluent way? const App = () => { useEffect(() => { const handleIconShow = () => { const replyTextarea = document.querySelectorAll( '#reply-dialog-container > #reply-dialog-id > div#body > div#main > #input-container > #outer > #child-input > tp-yt-iron-autogrow-textarea#textarea > div.textarea-container' ); console.log(replyTextarea); }; handleIconShow(); // Listen for changes to the URL and extract the video ID const observer = new MutationObserver(handleIconShow); observer.observe(document.documentElement, { childList: true, subtree: true }); }, []); what im doing you think is ok? you said you would do that manually how can i do that so?
50 replies
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
i think im figuring out ways to do this with new MutationObserver
50 replies
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
shet 😆
50 replies
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
how can i move my icon on textarea that is not on screen yet and will be and have it be shown on other textareas that are not on screen yet
50 replies
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
let me check
50 replies
PD🧩 Plasmo Developers
Created by It's Sina on 8/27/2023 in #👟framework
Api requests not sending in Firefox
import cssText from "data-text:~/contents/plasmo-overlay.css" import type { PlasmoCSConfig } from "plasmo" export const config: PlasmoCSConfig = { matches: ["https://www.plasmo.com/*"], css: ["font.css"] } export const getStyle = () => { const style = document.createElement("style") style.textContent = cssText return style } const PlasmoOverlay = () => { return ( <span className="hw-top" style={{ padding: 12 }}> CSUI OVERLAY FIXED POSITION </span> ) } export default PlasmoOverlay wo what i return is what i want in the right position?
50 replies