aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
blob: d013bcb14bc0610980dc4c4b6fa0afa5ddf8433b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
	"manifest_version": 2,

	"name": "Timetasker",
	"description": "Automatic weekly Time Task form filler",
	"version": "0.0.1",

	"content_scripts": [
		{
			"matches": ["*://*.timetask.com/time/add/"],
			"js": ["timetasker.js"]
		}
	],

	"options_ui": {
		"page": "options.html",
		"chrome_style": true
	}
}