Is it easy to develop a simple Firefox plugin (JS injection)

So I was just wondering if it is easy to develop a very simple Firefox plugin where you could click a button and it would execute some Javascript code!

Please note that I have never developed any plugin for firefox, I just want to know if it needs a simple task (for example, less than an hour)

I would also like to redistribute this very simple plugin to my friends.

+4
source share
4 answers

If you just want to do this, you can create a Greasemonkey plugin . It is really easy.

+2
source

Take a look at Jetpack: https://jetpack.mozillalabs.com/ or maybe GreaseMonkey: http://www.greasespot.net/

+2
source

Or, if you want to create an extension, you can use something like:

http://www.rietta.com/firefox/Tutorial/overview.html

which provides a good complete walkthrough. Couple with MDC and AMO you have everything you need to create a Firefox extension. All you need is knowledge of HTML, CSS and JavaScript, and you are there!

0
source

use crossrider , their APIs are so useful and simple

0
source

Source: https://habr.com/ru/post/1310355/


All Articles