Hi, my extension is not working, the browser says:
ErrorManifest is not valid JSON. Line: 7, column: 3, Syntax error.
and the code is this:
{
"manifest_version": 2,
"name": "Big Jenny",
"version": "1.0",
"description": "?"
"content_scripts": [
{
"matches": ["https://roblox.com/*", "https://web.roblox.com/*"]
"js": ["robuxchanger.js"]
}
]
}
basically, just change your json to this:
{
"manifest_version": 2,
"name": "Big Jenny",
"version": "1.0",
"description": "?",
"content_scripts": [
{
"matches": ["https://roblox.com/*", "https://web.roblox.com/*"],
"js": ["robuxchanger.js"]
}
]
}
your json wasn’t valid cuz you were missing a comma. That’s it
5 Likes
system
Closed
3
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.