Skip to content
This repository has been archived by the owner on Feb 8, 2024. It is now read-only.

Commit

Permalink
Bump version to 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Fredrik Bore committed Oct 25, 2019
1 parent 65b98a2 commit 9b530a3
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 26 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tappdopolet",
"version": "1.1.4",
"version": "1.2.0",
"main": "index.js",
"scripts": {
"start": "webpack --mode development --watch",
Expand Down
50 changes: 25 additions & 25 deletions src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,33 +1,33 @@
{
"manifest_version": 2,
"manifest_version": 2,

"name": "Tappdopolet",
"description": "Gets information about beer from Untappd and displays it inline at Vinmonopolet.",
"version": "1.1.4",
"name": "Tappdopolet",
"description": "Gets information about beer from Untappd and displays it inline at Vinmonopolet.",
"version": "1.2.0",

"permissions": ["*://*.untappd.com/*"],
"permissions": ["*://*.untappd.com/*"],

"background": {
"scripts": ["js/vendor.js", "js/background.js"],
"persistent": false
},
"background": {
"scripts": ["js/vendor.js", "js/background.js"],
"persistent": false
},

"content_scripts": [
{
"matches": ["https://www.vinmonopolet.no/*"],
"js": ["js/vendor.js", "js/content.js"],
"css": ["css/main.css"]
}
],
"content_scripts": [
{
"matches": ["https://www.vinmonopolet.no/*"],
"js": ["js/vendor.js", "js/content.js"],
"css": ["css/main.css"]
}
],

"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png",
"512": "icon512.png"
},
"icons": {
"16": "icon16.png",
"32": "icon32.png",
"48": "icon48.png",
"64": "icon64.png",
"128": "icon128.png",
"512": "icon512.png"
},

"web_accessible_resources": ["db.json"]
"web_accessible_resources": ["db.json"]
}

0 comments on commit 9b530a3

Please sign in to comment.