S
S
sochi-russia2019-09-06 10:33:55
JavaScript
sochi-russia, 2019-09-06 10:33:55

How to resize Popup window using buttons in Chrome extension?

There is an extension. By clicking on the button on the browser panel, a Popup window opens, for which popup.html is responsible.
There are 2 css files in the root of the extension folder. Let's
call them

style1.css
and
style2.css

The extension generates a table, 1 style is responsible for the PC version, the second is for the mobile response.
Is it possible to place two buttons above the table in the popup.html file, clicking on which brought the table to the desktop view, and clicking the second one for the mobile response?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
M
marataziat, 2019-09-06
@marataziat

There is no API in chrome to change the poput size! All these configurations are read from manifest.json once and it is impossible to resize from JS!

D
Dmitry Arushanov, 2019-09-06
@daruwanov

And if, when you click on the button using JS, add / remove the class from the top element
.mobile | .desktop, or just add and remove the .mobile class.
Well, tweak the style file a little so that it takes this into account.

M
Mazino, 2019-09-06
@Mazino

//Вешаем обработчик событий на контейнер с popup
document.querySelector('.container')
  .addEventListener('click', ({target}) => /<Id твоей кнопки>/.test(target.classList.join('')) 
   ? /** Делаешь, что тебе нужно */ 
   : false)/** Ничего не делаешь /*

The bottom line is to listen to clicks in the block where your popup with buttons is, with any click inside it, you check who initiated the event, if this is your button, do what you need, otherwise nothing

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question