Random Bookmark
Open a random bookmark
ما هو Random Bookmark؟
Random Bookmark هو إضافة Chrome تم تطويرها بواسطة Feras Albaroudi، والميزة الرئيسية لها هي "Open a random bookmark".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Random Bookmark
قم بتنزيل ملفات الامتداد Random Bookmark بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
| عنوان صفحة المساعدة | 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"
}
}
} | |