Research Bookmarks
A clean and organized way to bookmark Google search results.
什么是Research Bookmarks?
Research Bookmarks是由Jeff Ng开发的Chrome扩展程序,该扩展的主要功能是“A clean and organized way to bookmark Google search results.”。
扩展截图
下载Research Bookmarks扩展crx文件
下载Research Bookmarks扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Google search is powerful, but it could be frustrating sometimes to manage the useful search results and tabs definitely not a good solution.
Introducing Research Bookmarks, a light-weight tool to help you to manage the search results. Simply add the search results to your research bookmarks with one click to build a reading list. 扩展基本信息
| 名称 | |
| ID | eabiibeimmkdbjclijmgohlklgkpdjhc |
| 官方URL | https://chromewebstore.google.com/detail/research-bookmarks/eabiibeimmkdbjclijmgohlklgkpdjhc |
| 简介 | A clean and organized way to bookmark Google search results. |
| 文件大小 | 55.72 KB |
| 安装次数 | 20 |
| 当前版本 | 0.1 |
| 更新时间 | 2020-01-23 |
| 上架时间 | 2020-01-23 |
| 评分 | 5.00/5 共3次评分 |
| 开发者 | Jeff Ng |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Research Bookmarks",
"description": "A clean and organized way to bookmark Google search results.",
"version": "0.1",
"manifest_version": 2,
"permissions": [
"storage",
"activeTab"
],
"browser_action": {
"default_popup": "popup\/rbpPopup.html",
"default_icon": {
"16": "images\/rbp_16.png",
"32": "images\/rbp_32.png",
"48": "images\/rbp_48.png",
"128": "images\/rbp_128.png"
}
},
"icons": {
"16": "images\/rbp_16.png",
"32": "images\/rbp_32.png",
"48": "images\/rbp_48.png",
"128": "images\/rbp_128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.google.com\/search*"
],
"css": [
"init\/initPage.css"
],
"js": [
"init\/initPage.js"
]
}
],
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Ctrl+B",
"mac": "MacCtrl+B"
},
"description": "Opens bookmark list"
}
}
} | |