Omnibox Bookmark
Search your bookmarks and open them right from the omnibox!
Omnibox Bookmark란 무엇입니까?
Omnibox Bookmark은(는) Harshal Lele에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Search your bookmarks and open them right from the omnibox!"입니다.
확장 프로그램 스크린샷
Omnibox Bookmark 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Access your bookmarks through the omnibox by typing 'bkmrk' and the name of the bookmark. It searches both desktop and mobile bookmarks lets you navigate to them through the omnibox. Press Ctrl+B to bookmark the page that you are on. Press Ctrl+X to remove bookmark from active page. Any suggestions or constructive criticism is always appreciated!
확장 프로그램 기본 정보
이름 | Omnibox Bookmark |
ID | hahonbhmpdagcdgikajlcjdghicbffbf |
공식 URL | https://chromewebstore.google.com/detail/omnibox-bookmark/hahonbhmpdagcdgikajlcjdghicbffbf |
설명 | Search your bookmarks and open them right from the omnibox! |
파일 크기 | 18.7 KB |
설치 횟수 | 12 |
현재 버전 | 0.3 |
최근 업데이트 | 2015-04-14 |
출시 날짜 | 2015-04-13 |
개발자 | Harshal Lele |
결제 유형 | free |
지원되는 언어 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Omnibox Bookmark", "description": "Search your bookmarks and open them right from the omnibox!", "version": "0.3", "background": { "scripts": [ "Bookmarksearch.js" ] }, "commands": { "bookmark-active-page": { "suggested_key": { "windows": "Ctrl+B", "mac": "Command+B", "chromeos": "Ctrl+B", "linux": "Ctrl+B" }, "description": "Bookmark Active page" }, "Remove-bookmark-of-Active-page": { "suggested_key": { "windows": "Ctrl+X", "mac": "Command+X", "chromeos": "Ctrl+X", "linux": "Ctrl+X" }, "description": "Remove Bookmark from Active page" } }, "permissions": [ "tabs", "bookmarks", "notifications" ], "icons": { "16": "icon16trans.png", "19": "icon19trans.png", "38": "icon38trans.png", "48": "icon48trans.png", "128": "icon128trans.png" }, "omnibox": { "keyword": "bkmrk" } } |