Bookmark Shuffle

A nifty little extension that shuffles though your bookmarks.

Bookmark Shuffleとは何ですか?

Bookmark Shuffleはhttp://www.andreboekhorst.nlによって開発されたChromeの拡張機能で、その主な機能は「A nifty little extension that shuffles though your bookmarks.」です。

拡張機能のスクリーンショット

screenshot

Bookmark Shuffle拡張機能のCRXファイルをダウンロード

Bookmark Shuffle拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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.                    

拡張機能の基本情報

名前 Bookmark Shuffle Bookmark Shuffle
ID hjkjfgagimlancolelcjihldonnbebfh
公式URL https://chrome.google.com/webstore/detail/bookmark-shuffle/hjkjfgagimlancolelcjihldonnbebfh
説明 A nifty little extension that shuffles though your bookmarks.
ファイルサイズ 43.03 KB
インストール数 225
現在のバージョン 0.0.7
最終更新日 2016-03-06
公開日 2016-03-06
評価 3.33/5 合計 3 レビュー
開発者 http://www.andreboekhorst.nl
支払い方法 free
対応言語 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"
    }
}