Update version and permissions in manifest.json

This commit is contained in:
mickie 2022-01-13 21:26:55 -06:00
parent 5411b1d3c6
commit e051e00899
2 changed files with 5 additions and 5 deletions

View File

@ -10,9 +10,9 @@
"code:typecheck": "./node_modules/.bin/tsc --noEmit", "code:typecheck": "./node_modules/.bin/tsc --noEmit",
"app:dist": "rimraf dist && cross-env BROWSER='firefox' webpack --config webpack/webpack.prod.js", "app:dist": "rimraf dist && cross-env BROWSER='firefox' webpack --config webpack/webpack.prod.js",
"app:dev": "cross-env BROWSER='firefox' webpack --config webpack/webpack.dev.js --watch", "app:dev": "cross-env BROWSER='firefox' webpack --config webpack/webpack.dev.js --watch",
"test:unit": "jest", "style:dev": "postcss ./public/css/styles.css -o ./dist/css/main.css",
"style-dev": "postcss ./public/css/styles.css -o ./dist/css/main.css", "style:dist": "NODE_ENV=production postcss ./public/css/styles.css -o ./dist/css/main.css",
"style-dist": "NODE_ENV=production postcss ./public/css/styles.css -o ./dist/css/main.css" "test:unit": "jest"
}, },
"repository": { "repository": {
"type": "git", "type": "git",

View File

@ -1,8 +1,8 @@
{ {
"name": "Fedishare", "name": "Fedishare",
"version": "0.9.0", "version": "0.9.1",
"description": "Share the current tab on the fediverse", "description": "Share the current tab on the fediverse",
"permissions": ["tabs", "activeTab", "https://*/*", "storage"], "permissions": ["activeTab", "storage"],
"manifest_version": 2, "manifest_version": 2,
"browser_action": { "browser_action": {
"default_popup": "popup.html", "default_popup": "popup.html",