From 6e0027c1bf2683cc6fe951226efb38458fc352cf Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Sat, 1 Aug 2015 15:27:15 -0400 Subject: Add manifest.json New manifest with some basic info that uses a content script on Jira's "project board" scrum board page. --- manifest.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 manifest.json 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"] + }] +} -- cgit v1.2.3