aboutsummaryrefslogtreecommitdiffstats
path: root/firefox-addon/package.json
blob: 43cbf740d7099244acff805c417648527cc14574 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
  "name": "browsing-activity-tracker",
  "title": "Browsing Activity Tracker",
  "id": "jid1-KLw59UduPgRwag",
  "description": "Notify a callback URL whenever a webpage is loaded or displayed.",
  "author": "Thibaut Horel <thibaut@horel.org>",
  "license": "MPL 2.0",
  "version": "0.1",
  "homepage": "https://github.com/Thibauth/browsing-activity-tracker",
  "icon": "icon48.png",
  "icon64": "icon128.png",
  "preferences": [{
        "name": "callback",
        "type": "string",
        "title": "CallbackĀ URL",
        "description": "URL to be notified.",
        "value": "http://localhost:8080"
  },
  {
       "name": "key",
       "type": "string",
       "title": "Browser key",
       "description": "Key to identify the browser.",
       "value": "firefox"
  }]
}