Is it possible to extend the google chrome extension with Ruby on Rails?

I'm not sure why he told me that this question is subjective. I looked all over the Internet and could not find the answer. I know that content scripts for google chrome extensions are usually written in javascript.

What is the connection between this and Ruby? I know that Rails is web development for Ruby. I'm just learning all this.

+4
source share
1 answer

Ruby on Rails is the foundation for server-side code in Ruby.
Chrome extensions are written in pure Javascript.
And your never meet.

You might want to use CoffeeScript, which is a Ruby-like language that converts to Javascript.
(I have never tried writing Chrome extensions in it, but I assume that it will work correctly)

+7
source

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


All Articles