chore(release): 0.4.0-develop.1 [skip ci]

# [0.4.0-develop.1](https://git.lumeweb.com/LumeWeb/extension/compare/v0.3.0...v0.4.0-develop.1) (2023-08-07)

### Bug Fixes

* **ci:** change publish step to prepare ([a3ba768](a3ba768885))
* **ci:** echo out url for release zip, and provide sha256 hash checksum. ([265bbe3](265bbe3b91))
* **ci:** strip out filename ([13c51dd](13c51dd7d0))

### Features

* add new popup app to go to login, dashboard, and logout ([df1895f](df1895f824))
This commit is contained in:
semantic-release-bot 2023-08-07 05:37:52 +00:00
parent 6074923086
commit 78c8a7864f
2 changed files with 80 additions and 67 deletions

13
CHANGELOG.md Normal file
View File

@ -0,0 +1,13 @@
# [0.4.0-develop.1](https://git.lumeweb.com/LumeWeb/extension/compare/v0.3.0...v0.4.0-develop.1) (2023-08-07)
### Bug Fixes
* **ci:** change publish step to prepare ([a3ba768](https://git.lumeweb.com/LumeWeb/extension/commit/a3ba768885d0102cbd941fce78c089876734be49))
* **ci:** echo out url for release zip, and provide sha256 hash checksum. ([265bbe3](https://git.lumeweb.com/LumeWeb/extension/commit/265bbe3b9171b5711a58a89a70938dd0c709b3ea))
* **ci:** strip out filename ([13c51dd](https://git.lumeweb.com/LumeWeb/extension/commit/13c51dd7d024da830055b7671c371d1292b2c06a))
### Features
* add new popup app to go to login, dashboard, and logout ([df1895f](https://git.lumeweb.com/LumeWeb/extension/commit/df1895f8243b515921210dd6248b4126a96564c6))

View File

@ -1,73 +1,73 @@
{
"description": "Lume Web is your decentralized gateway into the web3 internet, the web owned and controlled by its users",
"manifest_version": 2,
"name": "Lume Web",
"version": "0.3.0.3",
"homepage_url": "https://lumeweb.com",
"icons": {
"48": "icon.png",
"96": "icon@2x.png"
"description": "Lume Web is your decentralized gateway into the web3 internet, the web owned and controlled by its users",
"manifest_version": 2,
"name": "Lume Web",
"version": "0.4.0-develop.1",
"homepage_url": "https://lumeweb.com",
"icons": {
"48": "icon.png",
"96": "icon@2x.png"
},
"permissions": [
"proxy",
"webRequest",
"webRequestBlocking",
"webNavigation",
"menus",
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"matches": [
"http://kernel.lume/"
],
"js": [
"bootloader.js"
],
"run_at": "document_end",
"all_frames": true
},
"permissions": [
"proxy",
"webRequest",
"webRequestBlocking",
"webNavigation",
"menus",
{
"matches": [
"<all_urls>"
],
"background": {
"scripts": [
"background.js"
]
],
"js": [
"bridge.js"
],
"run_at": "document_end",
"all_frames": true
},
"content_scripts": [
{
"matches": [
"http://kernel.lume/"
],
"js": [
"bootloader.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"js": [
"bridge.js"
],
"run_at": "document_end",
"all_frames": true
},
{
"matches": [
"<all_urls>"
],
"js": [
"cryptoLoader.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
"icon@2x.png",
"*.html",
"assets/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"browser_specific_settings": {
"gecko": {
"id": "contact@lumeweb.com",
"strict_min_version": "91.1.0"
}
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Lume Web",
"default_popup": "popup.html"
{
"matches": [
"<all_urls>"
],
"js": [
"cryptoLoader.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
"icon@2x.png",
"*.html",
"assets/*"
],
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self';",
"browser_specific_settings": {
"gecko": {
"id": "contact@lumeweb.com",
"strict_min_version": "91.1.0"
}
},
"browser_action": {
"default_icon": "icon.png",
"default_title": "Lume Web",
"default_popup": "popup.html"
}
}