diff --git a/public/_locales/en/detailed_description.txt b/public/_locales/en/detailed_description.txt index 7182fc3..f690dc8 100644 --- a/public/_locales/en/detailed_description.txt +++ b/public/_locales/en/detailed_description.txt @@ -1,6 +1,6 @@ Load a random page from your bookmarks! -More and more bookmarks going unvisited? Use WebMark to stop that! If you have a lot of bookmarks to visit later at some point (read: "never"), move or copy them to WebMark folder using Chrome's built-in bookmark manager (Ctrl+Shift+O on Windows/Linux, ⌘+Option+B on Mac, or just chrome://bookmarks). You can also save them as you go by clicking the save button you see once you click on the WebMark icon on the top right. Then when you're bored and need something to read, click on the load button to see a random page from WebMark folder! +More and more bookmarks going unvisited? Use WebMark to stop that! If you have a lot of bookmarks to visit later at some point (read: "never"), move or copy them to WebMark folder using Chrome's built-in bookmark manager (Ctrl+Shift+O on Windows/Linux, ⌘+Option+B on Mac, or just chrome://bookmarks). You can also save them as you go by clicking the save button you see once you click on the WebMark icon on the top right(or simply Alt+S). Then when you're bored and need something to read, click on the load button to see a random page from WebMark folder(or simply Alt+Q)! Notes: • You can rename or move the WebMark folder. However, we don't create a new one unless it is deleted. @@ -8,11 +8,7 @@ Notes: Features available: • Save bookmarks to WebMark folder • Load a random page from WebMark folder +• Use keyboard shortcuts to save(Alt+S) and load(Alt+Q) bookmarks • Choose whether a page is loaded in the current tab or a new tab -Features coming: -• Use keyboard shortcuts to save and load bookmarks -• Delete from WebMark folder once you finish reading the page -• Open the webmark folder in bookmark manager - If you have any questions, concerns, comments, or criticisms, please feel free to leave a review or reach us at strgzrs@googlegroups.com! diff --git a/public/_locales/ko/detailed_description.txt b/public/_locales/ko/detailed_description.txt index 5bb4bde..32cf3f1 100644 --- a/public/_locales/ko/detailed_description.txt +++ b/public/_locales/ko/detailed_description.txt @@ -1,6 +1,6 @@ 북마크된 페이지를 랜덤으로 골라드려요! -북마크만 해 두고 안 보는 건 이제 그만! '나중에 봐야지' 생각만 하고 가지 않은 페이지들이 있다면 웹마크 폴더로 옮겨 보세요. 윈도우/리눅스에선 Ctrl+Shift+O, 맥에선 ⌘+Option+B를 누르면 크롬 북마크 관리자가 열려요. (또는 주소창에 chrome://bookmarks 를 입력하고 이동할 수도 있어요.) 아니면 서핑하다가 나중에 읽고 싶은 페이지가 있으면 웹마크 버튼을 누르고 '저장하기'를 눌러 저장해 뒀다가, 심심할 때 웹마크 버튼 - '불러오기'를 눌러 웹마크 폴더 속 페이지를 무작위로 하나 띄울 수 있어요. +북마크만 해 두고 안 보는 건 이제 그만! '나중에 봐야지' 생각만 하고 가지 않은 페이지들이 있다면 웹마크 폴더로 옮겨 보세요. 윈도우/리눅스에선 Ctrl+Shift+O, 맥에선 ⌘+Option+B를 누르면 크롬 북마크 관리자가 열려요. (또는 주소창에 chrome://bookmarks 를 입력하고 이동할 수도 있어요.) 아니면 서핑하다가 나중에 읽고 싶은 페이지가 있으면 웹마크 버튼을 누르고 '저장하기'(또는 Alt+S)를 눌러 저장해 뒀다가, 심심할 때 웹마크 버튼 - '불러오기'(또는 Alt+Q)를 눌러 웹마크 폴더 속 페이지를 무작위로 하나 띄울 수 있어요. 참고 : • 웹마크폴더를 이동하거나 폴더의 이름을 바꿔도 괜찮아요. diff --git a/public/manifest.json b/public/manifest.json index 0b82c82..b34012b 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,6 @@ { "name": "__MSG_extensionName__", - "version": "1.0.0", + "version": "1.0.1", "description": "__MSG_extensionDescription__", "default_locale": "en", "permissions": [ diff --git a/src/constants.ts b/src/constants.ts index 3764741..95e8b54 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -7,7 +7,7 @@ export const LOAD_HERE_KEY: string = 'loadHere'; // locale independent values export const OPTIONS_ABOUT_TEAM_LINK_GITHUB: string = 'https://github.com/jeongm-in/webmark/'; export const OPTIONS_ABOUT_TEAM_LINK_GOOGLE_GROUP: string = 'mailto:strgzrs@googlegroups.com'; -export const OPTIONS_ABOUT_TEAM_NAME: string = 'strgzr'; +export const OPTIONS_ABOUT_TEAM_NAME: string = 'strgzrs'; // user-visible strings export const FOLDER_EMPTY: string = chrome.i18n.getMessage('folderEmpty');