Ultimate Guitar Randomiser
Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com
ما هو Ultimate Guitar Randomiser؟
Ultimate Guitar Randomiser هو إضافة Chrome تم تطويرها بواسطة Domenico Gemoli، والميزة الرئيسية لها هي "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Ultimate Guitar Randomiser
قم بتنزيل ملفات الامتداد Ultimate Guitar Randomiser بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is for those who, like me, sometimes just want to play a random favourite.
Installation is easy, just install the extension and then the button will appear on your "My tabs" page every time you navigate to it.
You can then open a random tab in one of three ways:
- Click on the newly added "Random tab" button
- Use the keyboard shortcut: ⌘ + CTRL + R OR ⊞ + CTRL + R
- Click on the extension icon directly
Note: you must be signed in to Ultimate-Guitar.com for the extension to work correctly. معلومات أساسية عن التمديد
| الاسم | |
| ID | hakjookdamicmkhpnjamffoifnfkkldj |
| عنوان URL الرسمي | https://chromewebstore.google.com/detail/ultimate-guitar-randomise/hakjookdamicmkhpnjamffoifnfkkldj |
| الوصف | Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com |
| حجم الملف | 33.82 KB |
| عدد التثبيتات | 135 |
| النسخة الحالية | 1.2.1 |
| آخر تحديث | 2023-12-04 |
| تاريخ النشر | 2021-05-18 |
| تقييم | 5.00/5 مجموع تقييمات 4 |
| المطور | Domenico Gemoli |
| البريد الإلكتروني | [email protected] |
| نوع الدفع | free |
| موقع الإضافة | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| عنوان صفحة المساعدة | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| اللغات المدعومة | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Ultimate Guitar Randomiser",
"description": "Adds a \"Random Tab\" button to the \"My tabs\" page on Ultimate-Guitar.com",
"version": "1.2.1",
"manifest_version": 3,
"icons": {
"48": "icons\/icon48.png",
"128": "icons\/icon128.png",
"512": "icons\/icon512.png"
},
"action": [],
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/*.ultimate-guitar.com\/user\/mytabs"
],
"js": [
"content.js"
],
"css": [
"content.css"
]
}
],
"permissions": [
"tabs"
]
} | |