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.”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | hjkjfgagimlancolelcjihldonnbebfh |
官方網址 | 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" } } |