Random Bookmark
Open a random bookmark
什麼是Random Bookmark?
Random Bookmark是由Feras Albaroudi開發的Chrome擴展程式,該擴展的主要功能是“Open a random bookmark”。
擴展截圖
下載Random Bookmark擴展crx文件
下載Random Bookmark擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
The folder to open a bookmark from as well as well as where to open the bookmark can be configured.
擴展基本資訊
名稱 | Random Bookmark |
ID | eeoohjpijemgnlcegchbabgdbnikdcpd |
官方網址 | https://chromewebstore.google.com/detail/random-bookmark/eeoohjpijemgnlcegchbabgdbnikdcpd |
簡介 | Open a random bookmark |
檔案大小 | 2.1 MB |
安裝次數 | 168 |
目前版本 | 1.2.1 |
更新時間 | 2023-05-09 |
上架時間 | 2020-05-12 |
評分 | 4.00/5 共 5 次評分 |
開發者 | Feras Albaroudi |
電子郵箱 | [email protected] |
付費類型 | free |
擴展官網 | https://github.com/NeedsSoySauce/Random-Bookmark |
說明頁面URL | https://github.com/NeedsSoySauce/Random-Bookmark |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Random Bookmark", "version": "1.2.1", "description": "Open a random bookmark", "manifest_version": 3, "permissions": [ "storage", "bookmarks", "alarms" ], "background": { "service_worker": "background.js", "type": "module" }, "action": { "default_icon": { "16": "images\/shuffle-gray\/16.png", "32": "images\/shuffle-gray\/32.png", "48": "images\/shuffle-gray\/48.png", "128": "images\/shuffle-gray\/128.png" } }, "icons": { "16": "images\/shuffle-gray\/16.png", "32": "images\/shuffle-gray\/32.png", "48": "images\/shuffle-gray\/48.png", "128": "images\/shuffle-gray\/128.png" }, "options_ui": { "page": "options.html", "open_in_tab": true }, "commands": { "_execute_action": { "suggested_key": { "default": "Ctrl+B", "mac": "Command+B" } }, "shuffle": { "description": "Shuffle" }, "open-options": { "description": "Open options" } } } |