Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to build a Chrome extension using Java?

Tags:

Is it possible to build a Chrome extension using Java rather than JavaScript? (I use Java SE in Eclipse IDE.)

like image 435
user748455 Avatar asked Jan 04 '12 23:01

user748455


People also ask

Can we make Chrome extension with Java?

Google's Chrome version 45 and above have dropped support for NPAPI, and therefore Java Plugin do not work on these browsers anymore.

Can I write my own Chrome extension?

Sometimes, you might not be able to find an app or extension in the Chrome Web Store that meets your users' needs. If that happens, you can create your own custom app or extension that users can add to their ChromeOS device or Chrome browser.

What coding language do Chrome extensions use?

Google Chrome Extensions are browser extensions that modify the Google Chrome browser. These extensions are written using web technologies like HTML, CSS and Javascript.


1 Answers

Chrome extensions must run JavaScript. You can however use Google Web Toolkit to compile Java to JavaScript.

like image 55
abraham Avatar answered Oct 16 '22 17:10

abraham