aboutsummaryrefslogtreecommitdiffstats
path: root/chrome-extension/manifest.json
blob: a8dfff216bcb20d828b44f7d46e74fb3acf5fb37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
    "name": "Browsing Activity Tracker",
    "author": "Thibaut Horel <thibaut@horel.org>",
    "version": "0.1",
    "description": "Notify a callback URL whenever a webpage is loaded or displayed.",
    "homepage_url": "https://github.com/Thibauth/browsing-activity-tracker",
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "manifest_version": 2,
    "background": {
        "scripts": ["bg.js"]
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html"
}