DEV Community

Discussion on: Reading files in a Chrome Extension

Collapse
 
aussieguy profile image
Anthony Bruno

Chrome has changed the format of web_accessible_resources in manifest version 3 (developer.chrome.com/docs/extensio...)

"web_accessible_resources": [{
  "resources": ["data/items_all.txt"],
  "matches": [],
  "extension_ids": []
}]
Enter fullscreen mode Exit fullscreen mode

Thanks for pointing this out! I'll update the article to reflect this :)