Back to Webrtc Experiment

Enable Screen Capturing using Firefox Extensions API

Firefox-Extensions/enable-screen-capturing-old/README.md

latest1.3 KB
Original Source

Enable Screen Capturing using Firefox Extensions API

Enable screen capturing using Firefox (for https://www.webrtc-experiment.com demos only):

To Install

  1. type about:config into the URL bar in Firefox
  2. in the Search box type xpinstall.signatures.required
  3. double-click the preference, or right-click and select "Toggle", to set it to false.

To use in your own domains:

Modify bootstrap.js file, line 18:

javascript
['yourDomain.com', 'www.yourDomain.com'].forEach(function(domain) {
    if (values.indexOf(domain) === -1) {
        values.push(domain);
        addon_domains.push(domain);
    }
});

And modify install.rdf for you extension information (name, URL, icon etc.)

Credits

Muaz Khan:

  1. Personal Webpage: http://www.muazkhan.com
  2. Email: [email protected]
  3. Twitter: https://twitter.com/muazkh and https://twitter.com/WebRTCWeb
  4. Google+: https://plus.google.com/+WebRTC-Experiment

License

Firefox-Extensions are released under MIT licence . Copyright (c) Muaz Khan.