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 с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
| URL страницы помощи | 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"
]
} | |