Bookmark Shuffle
A nifty little extension that shuffles though your bookmarks.
¿Qué es Bookmark Shuffle?
Bookmark Shuffle es una extensión de Chrome desarrollada por http://www.andreboekhorst.nl, y su función principal es "A nifty little extension that shuffles though your bookmarks.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Bookmark Shuffle
Descarga archivos de extensión Bookmark Shuffle en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The Bookmark Shuffle extension allows Chrome users to shuffle through a selected set of Chrome's bookmarks. Getting started is easy; simply select the folders you want to shuffle through in the options menu and press the new Bookmark Shuffle browserbutton. This plugin is ideal if you want to browse through all your favorite blogs, news sites or just plain procrastination.
Información Básica de la Extensión
Nombre | |
ID | hjkjfgagimlancolelcjihldonnbebfh |
URL Oficial | https://chrome.google.com/webstore/detail/bookmark-shuffle/hjkjfgagimlancolelcjihldonnbebfh |
Descripción | A nifty little extension that shuffles though your bookmarks. |
Tamaño del Archivo | 43.03 KB |
Cantidad de Instalaciones | 225 |
Versión Actual | 0.0.7 |
Última Actualización | 2016-03-06 |
Fecha de Publicación | 2016-03-06 |
Calificación | 3.33/5 Total de 3 Calificaciones |
Desarrollador | http://www.andreboekhorst.nl |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.0.7", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "default_locale": "en", "background": { "scripts": [ "scripts\/background.js" ] }, "permissions": [ "tabs", "http:\/\/*\/*", "https:\/\/*\/*", "storage", "bookmarks", "topSites", "webNavigation", "webRequest", "*:\/\/*.google.com", "webRequestBlocking", "bookmarks" ], "options_ui": { "page": "options.html", "chrome_style": true, "open_in_tab": false }, "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/contentscript.js" ], "run_at": "document_end", "all_frames": false } ], "omnibox": { "keyword": "OMNIBOX-KEYWORD" }, "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "Bookmark Shuffle" } } |