Research Bookmarks
A clean and organized way to bookmark Google search results.
Cos'è Research Bookmarks?
Research Bookmarks è un'estensione di Chrome sviluppata da Jeff Ng, e la sua funzione principale è "A clean and organized way to bookmark Google search results.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Research Bookmarks
Scarica i file di estensione Research Bookmarks in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | Research Bookmarks |
ID | eabiibeimmkdbjclijmgohlklgkpdjhc |
URL Ufficiale | https://chromewebstore.google.com/detail/research-bookmarks/eabiibeimmkdbjclijmgohlklgkpdjhc |
Descrizione | A clean and organized way to bookmark Google search results. |
Dimensione del File | 55.72 KB |
Conteggio Installazioni | 20 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2020-01-23 |
Data di Pubblicazione | 2020-01-23 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | Jeff Ng |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } |