frostman
PD🧩 Plasmo Developers
•Created by frostman on 5/2/2024 in #👟framework
How to adjust the with-firebase-auth to work with Arc (other chromium browsers)
Solved it from the background script like this, works for all Chromium browsers that I have tested:
3 replies
PD🧩 Plasmo Developers
•Created by frostman on 2/9/2024 in #👟framework
Pin Side Panel like google search
5 replies
PD🧩 Plasmo Developers
•Created by frostman on 2/9/2024 in #👟framework
Pin Side Panel like google search
Now when Chrome 123 > have disabled that side panel button, how can i get that functionality back? Would be insainly helpful to get that back. Or just be able to trigger it in another way.
5 replies
PD🧩 Plasmo Developers
•Created by frostman on 2/9/2024 in #👟framework
Pin Side Panel like google search
Bump this, anyone that knows if it possible?
5 replies
PD🧩 Plasmo Developers
•Created by frostman on 2/16/2024 in #👾extension
How can i show an welcome page when users install my extension?
I was able to do it via the BG script like this:
chrome.runtime.onInstalled.addListener(function (details) {
console.log("onInstalled", details);
if (details.reason == "install") {
let url = chrome.runtime.getURL("tabs/index.html");
chrome.tabs.create({ url: url });
}
});
3 replies