Research Bookmarks

A clean and organized way to bookmark Google search results.

Co to jest Research Bookmarks?

Research Bookmarks to rozszerzenie Chrome opracowane przez Jeff Ng, a jego główną funkcją jest „A clean and organized way to bookmark Google search results.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Research Bookmarks

Pobierz pliki rozszerzeń Research Bookmarks w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Research Bookmarks Research Bookmarks
ID eabiibeimmkdbjclijmgohlklgkpdjhc
Oficjalny URL https://chromewebstore.google.com/detail/research-bookmarks/eabiibeimmkdbjclijmgohlklgkpdjhc
Opis A clean and organized way to bookmark Google search results.
Rozmiar pliku 55.72 KB
Liczba instalacji 20
Aktualna Wersja 0.1
Ostatnia Aktualizacja 2020-01-23
Data Publikacji 2020-01-23
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper Jeff Ng
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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"
        }
    }
}