Chrome mail extension application written in which language?

This may be a layman's question. I am using the email program I received from the chrome extension. That was good. I really want to know what language it is written in? Is it fully written in javascript and packaged with some tools like cardova? Or is any native language used? postman app

+5
source share
2 answers

This is a "chrome application" written in HTML5, CSS and JavaScript. About Chrome Applications

Google through Chrome allows this application to run in its own container, which works on any example of the operating system: Mac OS, Linux.

To publish the application, developers can package and download the application source files to the Chrome Web Store. link to additional information

+4
source

Check out the Postman Legacy Repo, which is available on GitHub.
https://github.com/postmanlabs/postman-chrome-extension-legacy/tree/develop/chrome

They used the following technologies

JS Framework: AngularJS CSS Framework: Bootstrap Template engine: DOM handle: jQuery, jQuery UI and many other jQuery plugins. Other: vkBeautify, Underscore, and many others.

Outline about the Chrome extension. This is a chrome plugin that is built with manifest.json (configuration file) and the Chrome API.

You can include your HTML, JS and other JS library or Framework according to the extension scope.

How to create a Chrome plugin?

1. Enable developer mode enter image description here

2. Download the extension enter image description here

Finally, once you’ve finished developing extensions, you can pack it as a CRX file to upload it to the Chrome Web Store using the package extension button

+4
source

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


All Articles