Research Bookmarks
A clean and organized way to bookmark Google search results.
Qu'est-ce que Research Bookmarks ?
Research Bookmarks est une extension Chrome développée par Jeff Ng, et sa fonction principale est "A clean and organized way to bookmark Google search results.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Research Bookmarks
Téléchargez les fichiers d'extension Research Bookmarks au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Research Bookmarks |
ID | eabiibeimmkdbjclijmgohlklgkpdjhc |
URL Officiel | https://chromewebstore.google.com/detail/research-bookmarks/eabiibeimmkdbjclijmgohlklgkpdjhc |
Description | A clean and organized way to bookmark Google search results. |
Taille du Fichier | 55.72 KB |
Nombre d'Installations | 20 |
Version Actuelle | 0.1 |
Dernière Mise à Jour | 2020-01-23 |
Date de Publication | 2020-01-23 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Jeff Ng |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } } |