browser-extension Questions
3
Solved
How to change Chrome Extension icon in this page?
Here's my manifest code :
{
"manifest_version": 2,
"name": "Demo",
"description": "This is demo.&q...
Singlephase asked 28/9, 2017 at 2:18
1
First time I ask for something here, so I hope I'm clear enough! ( don't judge me ... )
I need to build a web extension but for many reasons related to the way of working in my company I need to do...
Plowman asked 22/5, 2023 at 13:57
3
Solved
I'm trying to migrate my browser extension (that I expect to work on Chrome and Firefox) from manifest v2 to v3.
However, I am getting conflicting information about the background section. I did lo...
Nobe asked 7/1, 2023 at 21:27
4
Solved
Background
I have to use a Content Security Policy for a react application.
The reason, that is however not of a big matter here, is, that I am creating a WebExtension/Browser Extension/add-on a...
Cogon asked 14/3, 2019 at 10:54
2
Solved
How can an interprocess communication be estabilished between a browser extension and a native application? Is there any cross-platform (Linux and Mac OS X) and cross-browser solution (Firefox, Chr...
Insurer asked 23/4, 2014 at 20:30
2
I am trying to migrate my chrome extension from manifest version 2 to 3. Now that background scripts are replaced by service workers in manifest v3, I can no longer use a html file and refer js fil...
Battik asked 28/2, 2021 at 7:8
2
Solved
Does anyone know how to load unpacked google chrome plugin from command line?
I tried the following, but it doesn't work:
"C:\Users\<name>\AppData\Local\Google\Chrome\Application\chrome.exe"...
Sanson asked 31/7, 2014 at 16:41
3
Solved
I was trying to include JQuery on an existing website using console this way:
var script = document.createElement('script');
script.src = 'http://code.jquery.com/jquery-1.11.1.min.js';
script.type...
Neva asked 5/12, 2014 at 19:52
7
Solved
After the Chrome extension I'm working on is installed, or upgraded, the content scripts (specified in the manifest) are not re-injected so a page refresh is required to make the extension work. Is...
Adrenal asked 12/6, 2012 at 10:0
2
The Page Visibility API starts to be commonly used to pause mandatory video advertisements when the tab is not in focus.
This means you need to be watching the ad, if you switch tab or even have an...
Drawknife asked 21/9, 2013 at 2:53
6
Solved
I've wrote a Chrome Extension. My background.js file is quite large, so I want to split it to smaller parts and load specified methods when required (some kind of lazy-loading).
I've done this wit...
Margo asked 6/9, 2013 at 6:50
1
Solved
The W3C Browser Extensions Community Groups has been working for a while on compatibility between browser extensions on different platforms (Chrome/Firefox/Edge/Opera/Etc.).
They have a list of k...
Demo asked 23/5, 2019 at 9:1
2
I'm trying to change some behavior of the YouTube player, by changing some variables inside of the player_api script that is embedded into the html watch page of videos.
Problem is, whatever i t...
Postage asked 14/2, 2018 at 19:36
0
I've been maintaining a small project written in React. It's a browser extension which adds Slack-like emoji support to Facebook Messenger. Since Facebook is changing up thing once in a while, I ne...
Moxley asked 27/10, 2021 at 11:35
1
With iOS 15, Apple had made it possible to create Safari extension for iOS as well.
I'm currently in the process of bringing an existing macOS Safari extension to iOS.
My problem is that there does...
Weightless asked 7/9, 2021 at 14:7
1
I have cross-browser extension (currently running it on Chrome and Firefox) build with typescript and compiled with webpack. I wanted to use code-splitting to reduce the size of the bundle. However...
Hustle asked 29/1, 2019 at 16:15
2
Solved
I am developing a chrome extension. Recently I saw that when a chrome extension installed it's not showing in the toolbar. There is an extension toolbar icon. When I clicked that icon it shows all ...
Telethon asked 3/7, 2020 at 12:18
2
Solved
1. The Problem
I'm trying to access a global variable from a website — random OGS Example — through TypeScript in order to get data from the current board game.
I'm pretty new to TS so I'm not real...
Catchword asked 11/11, 2020 at 0:50
2
I created an example browser extension written in .html and typescript
that is working fine in Chrome, Firefox and Edge (canary). Typescript compiler generated .js and .js.map files from the .ts fi...
Martinet asked 5/7, 2019 at 17:4
11
Solved
Does anyone here have experience with/in developing IE extensions that can share their knowledge? This would include code samples, or links to good ones, or documentation on the process, or anythin...
Dregs asked 13/4, 2011 at 2:40
3
Solved
I am playing with chrome extensions, my manifest loads a background page with:
...
"background": { "scripts": ["background_page.js"], "persistent": false },
...
Selfknowledge asked 13/7, 2013 at 18:16
2
Solved
In the extension popup HTML I have placed an emoji, like this:
<div>
🔎 <input id="user_input" autofocus>
</div
But when I open the extension popup, this shows up:
I'd really li...
Holeandcorner asked 10/3, 2019 at 18:24
1
Solved
I dont really unterstand how the Chrome Extension API works. It was a rough to understand how the background.js and the content.js works, but my current Problem is, that the function insertCSS(); s...
Manatee asked 12/4, 2019 at 20:48
1
I have a browser extension for Chrome and Firefox and in the manifest.json I've defined a page to load on new tabs:
"chrome_url_overrides": {
"newtab": "page.html"
},
In Firefox this shows my p...
Improvisator asked 24/12, 2018 at 11:40
1
My intention is for one message to be passed to the worker after it is created, and for that message to be logged by the worker and a reply to be sent back. What happens is that the message sent to...
Fount asked 28/2, 2018 at 20:37
1 Next >
© 2022 - 2025 — McMap. All rights reserved.