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 |
| Eメール | [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"
}
}
} | |