This is probably a simple question, but I'm trying to create a Google extension without an icon, one that just runs in the background without a popup or anything. What would I put into the manifest to get this to happen?

有帮助吗?

解决方案

Simply remove this from the manifest.json:

...
"browser_action": {
    "default_icon": "icon.png"
},
...

Now the app will not appear in the top bar.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top