adambullmer / vue-cli-plugin-browser-extension

Browser extension development plugin for vue-cli 3.0
GNU Lesser General Public License v3.0
426 stars 76 forks source link

Option to content scripts componet doesn't work proparlly #80

Open ezosher opened 4 years ago

ezosher commented 4 years ago

Hey Guys,

Thanks for this great repo total appreciation. I'v noticed that when I choose the option to add the content-script it doesn't generate the code in manifest.json I have to manually add it.

"content_scripts": [
    {
      "matches": ["*://*/*"],
      "js": ["js/content-script.js"]
    }
  ],

** why do I need to represnt it with the js/ extension? ["js/content-script.js"]

one more off topic question. I'm trying to add vuetify to this boilerplate. any idea how can I do this I'v tried add it with the vue cli plugin but it dosen't render the css.

cheers in advance,

ghost commented 4 years ago

same for me