Online Bookmark Incremental Search
This extension is a incremental search UI for online bookmarks(Google Bookmarks, Pinboard, etc.), You can find bookmarks quickly.
Online Bookmark Incremental Search란 무엇입니까?
Online Bookmark Incremental Search은(는) https://www.enjoyxstudy.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is a incremental search UI for online bookmarks(Google Bookmarks, Pinboard, etc.), You can find bookmarks quickly."입니다.
확장 프로그램 스크린샷
Online Bookmark Incremental Search 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This extension is a incremental search UI for online bookmarks(Google Bookmarks, Pinboard, etc.), You can find bookmarks quickly. * Perform an incremental search from title, notes, tags, and list the matched bookmarks. * You can search by entering multiple keywords. The supported operators are AND("keyword-a keyword-b"), OR("keyword-a|keyword-b"), NOT("!keyword"). * Highlight the part that matched the keyword. * Using keyboard shortcuts, You can find bookmarks very quickly. * Because the bookmark list is saved locally, you can start searching immediately. Supported services: * Google Bookmarks * Pinboard * Hatena Bookmark
확장 프로그램 기본 정보
이름 | Online Bookmark Incremental Search |
ID | lpaleambpedcnbeaolhoandbffjgidao |
공식 URL | https://chromewebstore.google.com/detail/online-bookmark-increment/lpaleambpedcnbeaolhoandbffjgidao |
설명 | This extension is a incremental search UI for online bookmarks(Google Bookmarks, Pinboard, etc.), You can find bookmarks quickly. |
파일 크기 | 230 KB |
설치 횟수 | 246 |
현재 버전 | 2.0.4 |
최근 업데이트 | 2024-01-30 |
출시 날짜 | 2018-01-28 |
평점 | 4.43/5 총 21 개의 평점 |
개발자 | https://www.enjoyxstudy.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/onozaty/browser-online-bookmark-incsearch |
도움말 페이지 URL | https://github.com/onozaty/browser-online-bookmark-incsearch |
지원되는 언어 | en,ja |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_extensionName__", "manifest_version": 2, "version": "2.0.4", "author": "onozaty", "description": "__MSG_extensionDescription__", "icons": { "128": "icons\/icon128.png" }, "browser_action": { "default_icon": "icons\/icon128.png" }, "permissions": [ "storage", "unlimitedStorage", "https:\/\/api.pinboard.in\/*", "https:\/\/www.google.com\/bookmarks\/*", "https:\/\/b.hatena.ne.jp\/*" ], "background": { "scripts": [ "background.js" ] }, "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+O" } } }, "default_locale": "en" } |