Bookmark Shuffle
A nifty little extension that shuffles though your bookmarks.
Qu'est-ce que Bookmark Shuffle ?
Bookmark Shuffle est une extension Chrome développée par http://www.andreboekhorst.nl, et sa fonction principale est "A nifty little extension that shuffles though your bookmarks.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bookmark Shuffle
Téléchargez les fichiers d'extension Bookmark Shuffle 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
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.
Informations de Base sur l'Extension
Nom | |
ID | hjkjfgagimlancolelcjihldonnbebfh |
URL Officiel | https://chrome.google.com/webstore/detail/bookmark-shuffle/hjkjfgagimlancolelcjihldonnbebfh |
Description | A nifty little extension that shuffles though your bookmarks. |
Taille du Fichier | 43.03 KB |
Nombre d'Installations | 225 |
Version Actuelle | 0.0.7 |
Dernière Mise à Jour | 2016-03-06 |
Date de Publication | 2016-03-06 |
Évaluation | 3.33/5 Total 3 Évaluations |
Développeur | http://www.andreboekhorst.nl |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |