269 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
0
answers
102
views
Selecting a certificate in the CryptoPro Extension for Code Browser Plug-in window using selenium
I am trying to automate work with resources that require authentication when logging in with a certificate. I use python + selenium==4.24.0. Authentication takes place using the CryptoPro Extension ...
1
vote
1
answer
575
views
Firefox says addon is corrupt even though it can be loaded via about:debugging
I am trying to write a Firefox addon (adapting a Google Chrome plugin) but I can't get it to install via about:addons. I get the error: This add-on could not be installed because it appears to be ...
1
vote
0
answers
1k
views
How to use a blocking request listener with manifest v3?
I am having trouble migrating my manifest v2 to v3.
Basically, my extension is downloading some files when a specific url pattern is matched.
I've migrated my old manifest to this:
"permissions&...
1
vote
0
answers
37
views
Is it possible to install javascript plugin using an .msa package installation on windows
I have developed a simple javascript plugin which is not deployed to any web stores. Is it possible to implement the same plugin to an desktop application installer to install the plugins to browser ...
2
votes
1
answer
508
views
Identify page finished loading content after page was already finished loading
I need write a browser plugin for Chrome where I want to manipulate certain elements. Manipulating the content is not an issue but the page I want to manipulate loads additional content after the page ...
0
votes
1
answer
138
views
How to create a software that can be used as a browser extension in python?
I have written a python program to download YouTube videos. I want to add it as an extension to browser, but I have read that browser doesn't run python scripts. So how can I deploy it? Can I convert ...
0
votes
0
answers
338
views
Writing a Chrome extension to block websites
I am trying to implement a Chrome Browser Extension.
The Extension should take the web content (HTML + Javascript Code) of any user-requested Website
and should firstly block that content from ...
2
votes
2
answers
3k
views
Mozilla Firefox Native Messaging Error: No such native application
I am using Windows 10 64Bits, Mozilla Firefox 76.0.1 and building a native messaging plugin. Works perfect on Chrome, but not in Firefox.
Now after I hit this bugreport describing my issues with ...
1
vote
1
answer
82
views
Browser plugin affiliate tracking
If I was going to host an e-commerce website where I aggregate the products from multiple other websites, I understand one potential approach would be to append some kind of 'affiliate tracking code' ...
0
votes
1
answer
5k
views
Video in local file system won't play from sibling folder
I am maintaining an HTML help system where assets have recently been split apart from HTML documents. I'm noticing that videos that will play when loaded from a local subfolder will not play when ...
2
votes
0
answers
301
views
Recording browsing session as a video in chrome
I saw a plugin in chrome called as Screencastify which can record browsing session as a video. Is it possible to record a particular div / dom element as a video and save it the disk ?
0
votes
1
answer
354
views
How to efficiently track the total number of lines of code in my Ruby on Rails project on Cloud9 IDE?
IDE - Cloud9 - Metrics
How do I efficiently track the total number of lines of code in my project?
I assume I need a plugin
It is a rails app, perhaps there is a gem available?
Does chrome ...
0
votes
1
answer
1k
views
How to sequentially insert scripts into the page context using <script> tags
I am having troubles loading all the scripts that I am inserting into the page context with <script> tags from a content_script script, because they are required to be executed in the correct ...
0
votes
1
answer
3k
views
How to Inject HTML along with CSS and JS in a single HTML file? - Chrome Extension
My extension is intended to inject some HTML elements using local JavaScript libraries such PrimeUI, jQueryUI and its correspondent CSS stylesheets.
The best way I have found to do so, is to inject ...
2
votes
0
answers
1k
views
Unable to get property 'onMessage' of undefined or null reference in Edge extension content script
I'm converting an Chrome extension which works well to Edge extension, and I need to have message listener in my content script.
Here is the code in my content script:
browser.runtime.onMessage....