aboutsummaryrefslogtreecommitdiffstats
path: root/chrome-extension/manifest.json
blob: a8ebd0ae790e497dae4a96a4d3a691aeac087fe7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
    "name": "Webpage Logger",
    "version": "0.1",
    "description": "Notify a callback URL",
    "manifest_version": 2,
    "background": {
        "scripts": ["bg.js"]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html"
}