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 |
| Eメール | [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"
}
}
} | |