[Vuejs]-VueJS app to replace page content in Chrome extension

0๐Ÿ‘

โœ…

OK, so I solved it thanks to the doc. Chrome extension will block any js tags within the templates.

So the only solution is to pass a pre-compiled template.

Using vue-cli, then building the app to have both scripts ans tags in js files, and then referencing it in the manifest.json file works!

Leave a comment