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

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

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

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

	"permissions": [
		"storage"
	]
}