Description
So I recently decided to try to make a chrome extension.
So following this tutorial https://developer.chrome.com/extensions/getstarted
I made a manifest.json
file
with the following code:
{
"name": "Getting Started Example",
"version": "1.0",
"description": "Build an Extension!",
"manifest_version": 2
}
Following the instructions to
Click the LOAD UNPACKED button and select the extension directory.
Problem
I attempt to load the extension and get the error
Manifest file is missing or unreadable
What I've tried
So before you mark this duplicate, I have read: Chrome says my extension's manifest file is missing or unreadable
and I have tried the answers, my manifest file is INDEED a .json
file.
I have made a new folder and remade my extension.
I have checked to see if the json
was valid (it is).
My manifest file is stored at Users\...\phpstormprojects\extension\manifest.json
I am attempting to upload the extension
folder.
Note: I have tried zipping the folder and uploading it and it as well hasn't worked.