.crx file install in chrome

前端 未结 6 1402
执笔经年
执笔经年 2021-01-31 07:41

I have just created a very simple chrome extension and it works fine. But when I converted to .crx file and try to open it with chrome, nothing happens. my chrome browser versio

6条回答
  •  旧巷少年郎
    2021-01-31 08:16

    Opening the debug console in Chrome, or even looking at the html source file (after it is loaded in the browser), make sure that all the paths there are valid (i.e. when you follow a link you get to it's content, and not an error). When something is not valid, fix the path (e.g. get rid of the server specific part and make sure you only refer to files that are part of your extension through paths like /js/jquery-123-min.js).

提交回复
热议问题