dinislam
dinislam
PD🧩 Plasmo Developers
Created by Lewis on 11/30/2023 in #🔰newbie
TailwindCSS in a CSUI makes everything VERY small.
hey @Lewis , I'm also running in to weird styling issues when running Tailwind in CSUI. Would be great if any of the Plasmo folks could weigh in here 🙂
5 replies
PD🧩 Plasmo Developers
Created by Execade on 3/8/2023 in #🔰newbie
captureVisibleTab()
I literally tried this and it didn't work. I only want to capture the tab when a content script sends a message to the SW
74 replies
PD🧩 Plasmo Developers
Created by Execade on 3/8/2023 in #🔰newbie
captureVisibleTab()
hey folks @avi12 @Execade , I've just been running into the same-ish issues. I'm trying to capture the tab when that tab's CS sends a message to the SW. Turns out you need <all_urls> host permission for that, and not just the activeTab permission. Apparently, the activeTab is only sufficient if the user invokes the extension directly.
74 replies
PD🧩 Plasmo Developers
Created by dinislam on 7/27/2024 in #🔰newbie
Content script runs on all URLs. Doesn't respect the config.matches.
After changing my code to not use "satisfies" it starts to work:
export const config: PlasmoCSConfig = {
matches: ["https://x.com/*"]
};
export const config: PlasmoCSConfig = {
matches: ["https://x.com/*"]
};
Why does the typescript syntax matter here?
4 replies
PD🧩 Plasmo Developers
Created by dinislam on 7/27/2024 in #🔰newbie
Content script runs on all URLs. Doesn't respect the config.matches.
No description
4 replies