Bookmark Shuffle

A nifty little extension that shuffles though your bookmarks.

Bookmark Shuffle là gì?

Bookmark Shuffle là một tiện ích mở rộng Chrome được phát triển bởi http://www.andreboekhorst.nl, và tính năng chính của nó là "A nifty little extension that shuffles though your bookmarks.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Bookmark Shuffle

Tải xuống các tệp mở rộng Bookmark Shuffle dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Bookmark Shuffle Bookmark Shuffle
ID hjkjfgagimlancolelcjihldonnbebfh
URL Chính Thức https://chrome.google.com/webstore/detail/bookmark-shuffle/hjkjfgagimlancolelcjihldonnbebfh
Mô tả A nifty little extension that shuffles though your bookmarks.
Kích Thước Tệp 43.03 KB
Số Lần Cài Đặt 225
Phiên Bản Hiện Tại 0.0.7
Cập Nhật Lần Cuối 2016-03-06
Ngày Phát Hành 2016-03-06
Đánh Giá 3.33/5 Tổng số 3 Đánh Giá
Nhà Phát Triển http://www.andreboekhorst.nl
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}