javascript - Chrome Extension Browser Action not Appearing -


i trying make extension google chrome, , in stages of coding it, icon browser action appear, i've added action it, won't show up. manifest.json here:

{     "manifest_version": 2,     "name": "test",     "description": "test extension"     "version": "0.1",     "background": {         "scripts": ["background.js"],     "browser_action": {         "default_icon": "icon.png" } } } 

you missing , after description entity, , put } @ wrong place.

{     "manifest_version": 2,     "name": "test",     "description": "test extension",     "version": "0.1",     "background": {         "scripts": [             "background.js"         ]     },     "browser_action": {         "default_icon": "icon.png"     } } 

Comments

Popular posts from this blog

c# - How Configure Devart dotConnect for SQLite Code First? -

java - Copying object fields -

c++ - Clear the memory after returning a vector in a function -