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. 扩展基本信息
| 名称 | |
| ID | eeoohjpijemgnlcegchbabgdbnikdcpd |
| 官方URL | 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"
}
}
} | |