Chrome tutorials - options page

后端 未结 2 573
独厮守ぢ
独厮守ぢ 2021-01-12 04:13

I am working on my first chrome extension.

I followed this article http://code.google.com/chrome/extensions/options.html to base my options page off of. So when I r

相关标签:
2条回答
  • 2021-01-12 04:39

    "manifest_version": 2 forbids embedded scripts. Move all of the JavaScript to options.js and load it that way.

    0 讨论(0)
  • 2021-01-12 04:51

    Adding "storage" permission in manifest.json helps:

    ...
    "permissions": [
       "storage"
    ]
    
    0 讨论(0)
提交回复
热议问题