manifest json basic structure

Solutions on MaxInterview for manifest json basic structure by the best coders in the world

showing results for - "manifest json basic structure"
Lennox
04 Nov 2016
1//this is the basic structure of the manifest.json of browser extensions
2{
3    "name":"demo",
4    "version":"1.1",
5    "manifest_version":2,
6
7    "description":"a demo extesion for learning purpose",
8    "browser_action":{
9        "default_title":"a demo title",
10        "default_popup":"popup.html"
11    },
12    "permissions": ["http://*", "https://*" ]
13}