I am developing a mozilla addon and now I have to record the browser session for a specific time as a video and sent it to the server. The recording of the web session will be triggered and stopped from my addon. How would I record the web session? Whether any jquery plugins are need to be added to my addon or is there any other source that addon sdk provides?
Record Firefox Web Browser session from my mozilla addon
1.8k Views Asked by Muthu At
1
There are 1 best solutions below
Related Questions in FIREFOX
- (in promise) TypeError: NetworkError when attempting to fetch resource
- Optimizing Selenium script for faster execution
- Apply Firefox policies.json only to Firefox but not to Nightly
- Difficulty Accessing HTTP URLs/IP Addresses Due to Browser Redirecting to HTTPS: Seeking Solutions
- How do I separate emails (from 1 alias) in Thunderbird from invasive websites on Firefox with file browsing scripts? Should I worry?
- Gecko chrome @supports function for strings and numbers
- some CSS property working on chrome's console but not on firefox
- Playwright - Firefox tests time out, but Chromium tests don't
- Notification.permission always return 'denied' on firefox
- Useless horizontal scrollbar in Firefox with absolute positioned div with fixed height
- Why is it impossible to definitively know if your website is running as a PWA or as a website?
- WebRTC from Firefox to Android crashes
- Firefox CSS: Set a variable based on properties of another element
- Getting Negative Time Duration in Sender-to-Client Application using Date.now() api
- Prevent users accessing Firefox menu items
Related Questions in FIREFOX-ADDON
- Firefox extension background script terminated preemptively
- Can be their an extension to save pages in as offline in the browser itself?
- I'm building addon for firefox user can take screenshot, but browser.runtime.sendMessage returns undefined
- Detecting how much 'White' color there is, on an embedded video on a webpage
- How to programatically fast forward video on a website
- Convert code from manifest v2 to v3 chrome extension
- How to request host_permissions at install time with Manifest V3?
- How to store fetch headers in javacript from website I don't own?
- Firefox debugger server changes my search bar coloring
- How can the omnibox suggestions be styled in Firefox?
- How do I fix the following issues with my port of a manifest v2 browser extension to manifest v3?
- How Can I Edit the Body of an API Request With a Firefox Addon
- HTMLButtonElement.click() in content script doesn't work in second screen
- Error sending message to background script: Error: Could not establish connection. Receiving end does not exist (FireFox Extension Test)
- crossOrigin blocks requests for translate.google.com
Related Questions in FIREFOX-ADDON-SDK
- Cannot access tab DOM using React + Firefox extension
- How can I upload an image to a site with a userscript/extension?
- Uncaught (in promise) Error for a couple of cycles then stopping
- How to use Selenium to install Firefox browser add-on?
- How to write/create a local text file inside of a firefox profile through a firefox extension?
- how do I detect if the tab has changed or refreshed in a firefox addon
- How to reuse a javascript function between content script and service worker in MV2/MV3-compatible way?
- Firefox extension proxy
- Why doesn't the content script open a new window using the windows.create method of the JavaScript APIs for WebExtensions to develop Firefox add-ons?
- Firefox extension share async function with return gives => Error: Permission denied to access property "then"
- how set badge text after loaded site on my extensions firefox
- Rerun Firefox addon's script on URL dynamic change
- How to sleep in a firefox extension (old and native JS methods not working)?
- insert content from firefox webextension
- loading simple iframe from extension firefox
Related Questions in MOZILLA
- How do I keep the same time input style in both firefox and chrome
- Adding Annotation with PDF.js
- Python geckodriver set up is unsuccesful
- In my range slider the track is coming over on thumb while working fine on Chrome
- NGINX doesn't resolve when website is accessing through Mozila Firefox browser
- Firefox WeakMap error but not in Chrome and Firefox Developer Edition
- Creating Transparent EGL surface
- Does Mozilla have contradictions about sizes and srcset attributes?
- Webscarab and the latest Mozilla version 121
- Anchor Element Download Attribute in Safari vs Chrome
- I'm encountering Selenium errors
- Crawl HTML data from an EngineSession
- Is there a Sublime Text package that serves similar function like the MDN References Intellisense popups of vscose?
- Javascript function for cleaning aliexpress links doesn't get always executed on Firefox
- How to use MediaRecorder() to record mobile resolution on Desktop
Related Questions in SESSION-REPLAY
- How to save user session info when the user closes the website
- openReplay to show the whole input not only first three characters
- Heatmap with rrweb package
- Datadog RUM mark elements to be excluded in the replay
- Is it possible to accurately shadow a stateful web site?
- Next.js, Styled-components and Yandex Metrica Session Replay
- How to implement session recording similar to Hotjar, but for mobile apps
- Session Replay vs Session Fixation vs Session Hijacking
- Record Firefox Web Browser session from my mozilla addon
- Fiddler to request HTTP requests with timing respected
- HMAC TimeStamping Tweak
- How can I retrieve HTTP responses from recorded log without receiving actual response from the server?
- Fiddler to replay HTTPS requests
- How to prevent a session replay attack with Rails and Devise?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I got this working in an addon with
about:pages, but I had to trick it into thinking it was https. The addon is a 27mb due to the inclusion of ffmpeg.js for converting video to different formats. So right now to download it you have to from my dropbox - https://www.dropbox.com/s/soemrqn2smmcge2/dist.xpi?dl=0The code is here on github - https://github.com/Noitidart/Screencastify/
I used webrtc.