aboutsummaryrefslogtreecommitdiffstats
path: root/manifest.json
diff options
context:
space:
mode:
authorTeddy Wing2015-08-01 15:27:15 -0400
committerTeddy Wing2015-08-01 15:27:15 -0400
commit6e0027c1bf2683cc6fe951226efb38458fc352cf (patch)
tree7c4fe4c189485b47e2de4ad74d7367a7ef5fe940 /manifest.json
downloadjira-whozits-6e0027c1bf2683cc6fe951226efb38458fc352cf.tar.bz2
Add manifest.json
New manifest with some basic info that uses a content script on Jira's "project board" scrum board page.
Diffstat (limited to 'manifest.json')
-rw-r--r--manifest.json12
1 files changed, 12 insertions, 0 deletions
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..21fa13e
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,12 @@
+{
+ "manifest_version": 2,
+
+ "name": "Jira Whozits",
+ "description": "Add ids to person sections on the scrum board for faster navigation.",
+ "version": "0.0.1",
+
+ "content_scripts": [{
+ "matches": ["*://*.atlassian.net/secure/RapidBoard.jspa*"],
+ "js": ["main.js"]
+ }]
+}