Siderite's Bookmark Explorer
Navigate through bookmark folders on a single page
Siderite's Bookmark Explorer란 무엇입니까?
Siderite's Bookmark Explorer은(는) https://siderite.dev에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Navigate through bookmark folders on a single page"입니다.
확장 프로그램 스크린샷
Siderite's Bookmark Explorer 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Move between bookmarks in a Chrome bookmark folder with ease, using keyboard shortcuts, context menus or buttons. The next site in the folder will be preloaded while you read the current one. Quickly bookmark HTML links directly in a Read Later folder, from which you can explore with the extension. It offers bookmark management, delete, undelete, import/export links and many other features. It does not connect to any external servers, does not serve ads and it's completely free. Instead of opening a million browser tabs and having everything be slow and low on resources, just bookmark all tabs in a folder, then read them one by one. Instead of having to open all pages you want to bookmark, just right click on links and add them to the Read Later folder. Makes reading the news or doing research comfortable and quick.
확장 프로그램 기본 정보
이름 | |
ID | dagpgdabbmfgcaibfbmolkebimebalnb |
공식 URL | https://chrome.google.com/webstore/detail/siderites-bookmark-explor/dagpgdabbmfgcaibfbmolkebimebalnb |
설명 | Navigate through bookmark folders on a single page |
파일 크기 | 93.48 KB |
설치 횟수 | 231 |
현재 버전 | 3.0.5 |
최근 업데이트 | 2019-10-29 |
출시 날짜 | 2019-10-29 |
평점 | 5.00/5 총 1 개의 평점 |
개발자 | https://siderite.dev |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://siderite.dev/blog/chrome-extension-bookmark-explorer.html/ |
개인정보 보호 정책 페이지 URL | https://www.freeprivacypolicy.com/live/848ecff6-1db4-4f20-9cec-052b3c296aac |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Siderite's Bookmark Explorer", "description": "Navigate through bookmark folders on a single page", "version": "3.0.5", "permissions": [ "tabs", "activeTab", "bookmarks", "contextMenus", "notifications", "chrome:\/\/favicon\/", "storage", "unlimitedStorage" ], "browser_action": { "default_icon": { "19": "icon.png" }, "default_popup": "popup.html" }, "background": { "scripts": [ "apiWrapper.js", "bookmarkExplorer.js", "background.js" ], "persistent": false }, "options_ui": { "page": "settings.html", "chrome_style": true }, "commands": { "prevBookmark": { "suggested_key": { "default": "Ctrl+Shift+K" }, "description": "Navigate to previous bookmark in the folder" }, "nextBookmark": { "suggested_key": { "default": "Ctrl+Shift+L" }, "description": "Navigate to next bookmark in the folder" }, "skipBookmark": { "description": "Skip this bookmark in its folder" } }, "icons": { "16": "icon.png", "128": "bigIcon.png" } } |