Bookmark Shuffle

A nifty little extension that shuffles though your bookmarks.

Vad är Bookmark Shuffle?

Bookmark Shuffle är en Chrome-tillägg utvecklad av http://www.andreboekhorst.nl, och dess huvudfunktion är "A nifty little extension that shuffles though your bookmarks.".

Tilläggsskärmbilder

screenshot

Ladda ner Bookmark Shuffle-förlängningens CRX-fil

Ladda ner Bookmark Shuffle-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Bookmark Shuffle Bookmark Shuffle
ID hjkjfgagimlancolelcjihldonnbebfh
Officiell webbadress https://chrome.google.com/webstore/detail/bookmark-shuffle/hjkjfgagimlancolelcjihldonnbebfh
Beskrivning A nifty little extension that shuffles though your bookmarks.
Filstorlek 43.03 KB
Antal Installationer 225
Aktuell Version 0.0.7
Senast Uppdaterad 2016-03-06
Publiceringsdatum 2016-03-06
Betyg 3.33/5 Totalt 3 Betyg
Utvecklare http://www.andreboekhorst.nl
Betalningssätt free
Stödda Språk 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"
    }
}