Skip to content

Commit

Permalink
chore(release): 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Light authored and Light committed May 4, 2021
1 parent 84f8260 commit 5812611
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 7 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

## [1.3.0](https://github.com/LightAPIs/free-export-bookmarks/compare/v1.2.1...v1.3.0) (2021-05-04)


### Features

* **contextmenu:** 在 Firefox 书签工具栏的右键菜单上添加导出书签的选项 ([6a0cbaf](https://github.com/LightAPIs/free-export-bookmarks/commit/6a0cbaf80ef61aa80500a6bbb2c23f117ca98286))


### Bug Fixes

* **tree:** 修复在 Firefox 中默认不会自动展开主要目录的问题 ([de37d2e](https://github.com/LightAPIs/free-export-bookmarks/commit/de37d2e395716002de147451b37aeefc879e2fcb))

### [1.2.1](https://github.com/LightAPIs/free-export-bookmarks/compare/v1.2.0...v1.2.1) (2021-03-24)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "free-export-bookmarks",
"description": "A chrome-extension project",
"version": "1.2.1",
"version": "1.3.0",
"author": "pana <new4wang@outlook.com>",
"license": "MIT",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/chrome/manifest.development.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__ (Dev)",
"description": "__MSG_extensionDescription__",
"version": "1.2.1",
"version": "1.3.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down
2 changes: 1 addition & 1 deletion src/chrome/manifest.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.2.1",
"version": "1.3.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down
9 changes: 7 additions & 2 deletions src/firefox/manifest.development.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__ (Dev)",
"description": "__MSG_extensionDescription__",
"version": "1.2.1",
"version": "1.3.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down Expand Up @@ -32,6 +32,11 @@
},
"default_title": "__MSG_extensionName__ (Dev)\n__MSG_extensionTip__"
},
"permissions": ["bookmarks", "storage", "contextMenus", "downloads"],
"permissions": [
"bookmarks",
"storage",
"contextMenus",
"downloads"
],
"content_security_policy": "default-src 'self'; script-src 'self' 'unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src * data: chrome:; connect-src * blob:; object-src 'none';"
}
9 changes: 7 additions & 2 deletions src/firefox/manifest.production.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"version": "1.2.1",
"version": "1.3.0",
"author": "pana",
"homepage_url": "https://github.com/LightAPIs/free-export-bookmarks",
"default_locale": "en",
Expand Down Expand Up @@ -32,6 +32,11 @@
},
"default_title": "__MSG_extensionName__\n__MSG_extensionTip__"
},
"permissions": ["bookmarks", "storage", "contextMenus", "downloads"],
"permissions": [
"bookmarks",
"storage",
"contextMenus",
"downloads"
],
"content_security_policy": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src * data: chrome:; connect-src * blob:; object-src 'none';"
}

0 comments on commit 5812611

Please sign in to comment.