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ファイルをダウンロード
Omnibox Bookmark拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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" } } |