Bookmark Shuffle

A nifty little extension that shuffles though your bookmarks.

Bookmark Shuffleคืออะไร?

Bookmark Shuffle เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://www.andreboekhorst.nl และคุณลักษณะหลักของมันคือ "A nifty little extension that shuffles though your bookmarks."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Bookmark Shuffle

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    }
}