Research Bookmarks

A clean and organized way to bookmark Google search results.

What is Research Bookmarks?

Research Bookmarks is a Chrome extension developed by Jeff Ng, and its main feature is "A clean and organized way to bookmark Google search results.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Research Bookmarks Extension CRX File

Download Research Bookmarks extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Research Bookmarks Research Bookmarks
ID eabiibeimmkdbjclijmgohlklgkpdjhc
Official URL https://chromewebstore.google.com/detail/research-bookmarks/eabiibeimmkdbjclijmgohlklgkpdjhc
Description A clean and organized way to bookmark Google search results.
File Size 55.72 KB
Installation Count 20
Current Version 0.1
Last Updated 2020-01-23
Publish Date 2020-01-23
Rating 5.00/5 Total 3 Ratings
Developer Jeff Ng
Email [email protected]
Payment Type free
Supported Languages 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"
        }
    }
}