Create a dynamic Chrome theme

I am trying to create a theme extension for Google Chrome that will regularly update the background image using a remote image source (i.e. the images are stored on a web server, not locally). The problem is that topics are not allowed to contain script elements. Any suggestions on how to get around this limitation?

+4
source share
1 answer

If by the background image you mean the background of the New Tab page, you can replace it with the html page (using the extension, not the theme): http://code.google.com/chrome/extensions/override.html .

+2
source

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


All Articles