Skip to content

Commit

Permalink
get all set up
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbartlow committed Jun 12, 2018
1 parent bf7abf3 commit 9e712d3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
1 change: 0 additions & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,3 @@ chrome.runtime.onMessage.addListener(
}
}
);

20 changes: 12 additions & 8 deletions manifest.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
{
"manifest_version": 2,
"name": "D&D Beyond Character Export",
"version": "0.1",
"page_action": {
"default_icon": "icon.png",
"default_title": "Export Sheet"
"name": "D&D Beyond Character Feature Exports",
"version": "0.9",
"description": "Export full character data to a PDF, so you can easily print your D&D Beyond characters and run them analog.",
"browser_action": {
"default_icon": "icon.png"
},
"icons": {
"16": "icon.png",
"48": "icon.png",
"128": "icon.png"
},
"content_scripts": [
{
Expand All @@ -15,8 +20,7 @@
}
],
"background": {
"scripts": ["background.js"],
"persistent": false
"scripts": ["background.js"]
},
"permissions": [ "declarativeContent", "tabs", "activeTab", "storage" ]
"permissions": [ "tabs", "activeTab", "storage" ]
}

0 comments on commit 9e712d3

Please sign in to comment.