576 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
62
views
PWA richer install UI multiple narrow screenshot adding
My manifest.json file.
"screenshots": [
{
"src": "screenshot/mobile/iphone14.png",
"form_factor": "narrow",
"sizes": ...
1
vote
0
answers
227
views
Translucent status-bar for Android PWA
I have a PWA and want to show content underneath the status-bar so it feels more "native".
When I use black-translucent with apples meta-tag I get the result I want on iOS - but I can't get ...
0
votes
0
answers
196
views
How to Stop Safari Web Extension from Asking for Permissions When Clicking a Toolbar Button
I am writing an extension for the Safari browser and one of its functions is to open a specific website when pressing a button in the toolbar. The site should open regardless of which tab is currently ...
0
votes
0
answers
53
views
Chrome's pwa automatic install promotion popup does not appear
Decided to go with Chrome default browser promotion rather than implementing my own one https://web.dev/articles/promote-install#browser-promotion implemented all the requirements described here: ...
1
vote
1
answer
82
views
Generating a nonce for a Chrome Web Extension
We are trying to generate a nonce for a chrome web extension so that we can run content scripts within an HTML that communicates with an onscreen popup. We have been hit with security errors when ...
0
votes
0
answers
34
views
How to implement background notification in web?
I have implemented Laravel Reverb in both public and private channels and working fine, however, I could not implement background service worker to receive notification on the PC from browser while ...
-1
votes
1
answer
66
views
Uncaught ReferenceError when connecting firebase real time database with firefox extension
I want to create a firefox extension that connect to firebase but no luck every time i add import to the backgroud.js script i get this error:
Uncaught ReferenceError: firebase is not defined or ...
2
votes
0
answers
284
views
Using importScripts() in a service worker in Firefox under Manifest V3
I'm working on a browser extension. In Chrome, I can simply do this:
manifest.json:
"background": {
"service_worker": "scripts/vh_service_worker.js",
},
and in ...
0
votes
0
answers
104
views
Block script requests within an iFrame using Manifestv3
I’m currently migrating a browser extension from Manifest v2 to Manifest v3. Among other things, the extension creates an iFrame of the currently open page, but it blocks a specific script within the ...
2
votes
0
answers
242
views
How can I properly export a self-hosted bundle in Expo v51 to open it later in Expo Go using a QR code?
Since Expo SDK 49, I've been using expo export --public-url, which outputs a dist folder with android/ios-index.json. I then deployed the dist folder to S3 and generated a QR code pointing to the URL ...
0
votes
0
answers
18
views
How to access and edit brave://resources/brave/css/reset.css file on Mac OS X? [duplicate]
I have been writing extensions for personal use for quite a while now, and with the following feature of the manifest.josn file, it becomes spectacularly easy to target the CSS selectors of whichever ...
-1
votes
1
answer
71
views
How can I use a browser extension's API within a standard website?
I'm curious about the feasibility of using the browser extension's API directly from a standard website. Specifically, I want to understand if there's a way to interact with the browser API from my ...
0
votes
2
answers
267
views
"display-override" field in my manifest.json flagging problem
"display_override": [
"standalone",
"fullscreen",
"minimal-ui",
"window-controls-overlay",
"browser"
],
Above is a ...
0
votes
0
answers
1k
views
Vite manifest not found Exception
My application was working normally until yesterday morning. Since this morning I have encountered this problem and unfortunately all my attempts to resolve it have yielded nothing.
My laravel version ...
1
vote
0
answers
175
views
How can I make sure that my manifest.json is fetched in a Progressive Web App (PWA)?
I am building a simple Progressive Web App. I pushed my app to a subfolder on my website, and when I ran the Lighthouse audit in Chrome it failed the PWA audit because "Web app manifest or ...