aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-03-18 14:32:57 +0100
committerTeddy Wing2017-03-18 14:32:57 +0100
commitfd4ea4cd17d0e24ae0f68f147e97cb73364400b2 (patch)
tree3194a3c316772d74dfae51f7ae9722e7dc9924be
downloadchrome-timetasker-fd4ea4cd17d0e24ae0f68f147e97cb73364400b2.tar.bz2
Initial commit. Add extension manifest.json.
-rw-r--r--manifest.json14
1 files changed, 14 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..f3ada9a
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,14 @@
+{
+ "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"]
+ }
+ ]
+}