Chrome tutorials - options page

后端 未结 2 607
独厮守ぢ
独厮守ぢ 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:51

    Adding "storage" permission in manifest.json helps:

    ...
    "permissions": [
       "storage"
    ]
    

提交回复
热议问题