diff options
| author | Teddy Wing | 2015-08-01 15:27:15 -0400 |
|---|---|---|
| committer | Teddy Wing | 2015-08-01 15:27:15 -0400 |
| commit | 6e0027c1bf2683cc6fe951226efb38458fc352cf (patch) | |
| tree | 7c4fe4c189485b47e2de4ad74d7367a7ef5fe940 | |
| download | jira-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.
| -rw-r--r-- | manifest.json | 12 |
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"] + }] +} |
