freeall
freeall

Reputation: 3198

Regarding storage permission for Chrome extension

Two questions about storage permission for Chrome extensions.

  1. I have a published extension. If I add a storage permission to manifest.json, will the extension be disabled for current users (i.e., Chrome asks if the user want to allow the new permissions), or will it keep running without asking them?

  2. From what version of Chrome is chrome.storage available?

Upvotes: 2

Views: 965

Answers (1)

Rob W
Rob W

Reputation: 349212

  1. Try it or read the documentation:

    The following permissions don't result in a warning: (...)

    • "storage"
  2. Version 20.

Upvotes: 3

Related Questions