Bookmark Shuffle

A nifty little extension that shuffles though your bookmarks.

Cos'è Bookmark Shuffle?

Bookmark Shuffle è un'estensione di Chrome sviluppata da http://www.andreboekhorst.nl, e la sua funzione principale è "A nifty little extension that shuffles though your bookmarks.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Bookmark Shuffle

Scarica i file di estensione Bookmark Shuffle 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

                        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.                    

Informazioni di Base sull'Estensione

Nome Bookmark Shuffle Bookmark Shuffle
ID hjkjfgagimlancolelcjihldonnbebfh
URL Ufficiale https://chrome.google.com/webstore/detail/bookmark-shuffle/hjkjfgagimlancolelcjihldonnbebfh
Descrizione A nifty little extension that shuffles though your bookmarks.
Dimensione del File 43.03 KB
Conteggio Installazioni 225
Versione Corrente 0.0.7
Ultimo Aggiornamento 2016-03-06
Data di Pubblicazione 2016-03-06
Valutazione 3.33/5 Totale 3 Valutazioni
Sviluppatore http://www.andreboekhorst.nl
Tipo di Pagamento free
Lingue Supportate 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"
    }
}