Bookmark Hotkeys
Bookmark Hotkeys
什么是Bookmark Hotkeys?
Bookmark Hotkeys是由Unknown开发的Chrome扩展程序,该扩展的主要功能是“Bookmark Hotkeys”。
扩展截图
下载Bookmark Hotkeys扩展crx文件
下载Bookmark Hotkeys扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Bookmark Hotkeys allows you to quickly access your bookmarks without using the mouse. This application is still in development! 扩展基本信息
| 名称 | |
| ID | ckadmgobfaomcmkfcnnbllmddpmkmdfe |
| 官方URL | https://chromewebstore.google.com/detail/bookmark-hotkeys/ckadmgobfaomcmkfcnnbllmddpmkmdfe |
| 简介 | Bookmark Hotkeys |
| 文件大小 | 535 KB |
| 安装次数 | 67 |
| 当前版本 | 2.2 |
| 更新时间 | 2015-10-21 |
| 上架时间 | 2015-10-20 |
| 评分 | 4.40/5 共5次评分 |
| 开发者 | Unknown |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Bookmark Hotkeys",
"description": "Bookmark Hotkeys",
"version": "2.2",
"manifest_version": 2,
"permissions": [
"activeTab",
"tabs",
"storage",
"bookmarks"
],
"icons": {
"128": "bookmark-black128.png"
},
"browser_action": {
"default_title": "Bookmark Hotkeys"
},
"commands": {
"open_bookmark_hotkeys": {
"suggested_key": {
"default": "Ctrl+Shift+E"
},
"description": "Open Bookmark Hotkeys",
"global": false
},
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+U",
"linux": "Ctrl+Shift+J"
}
}
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
}
} | |