I know that I can’t get a local file from within the extension directory. It is possible to get a file that is inside the extension directory itself?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can use chrome.runtime.getURL to get a fully-qualified URL to a resource.
The
chrome-extensionprotocol plus the extension id, will be the address for the extension’s root directory.If you need something more powerful, you might also use HTML5’s FileSystem API which can create, read, write and list files from a sandbox in the current user’s local file system.