Ultimate Guitar Randomiser
Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com
Wat is Ultimate Guitar Randomiser?
Ultimate Guitar Randomiser is een Chrome-extensie ontwikkeld door Domenico Gemoli, en de belangrijkste functie is "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com".
Extensie Screenshots
Download het CRX-bestand van de extensie Ultimate Guitar Randomiser
Download Ultimate Guitar Randomiser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | hakjookdamicmkhpnjamffoifnfkkldj |
| Officiële URL | https://chromewebstore.google.com/detail/ultimate-guitar-randomise/hakjookdamicmkhpnjamffoifnfkkldj |
| Beschrijving | Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com |
| Bestandsgrootte | 33.82 KB |
| Aantal Installaties | 135 |
| Huidige Versie | 1.2.1 |
| Laatst Bijgewerkt | 2023-12-04 |
| Publicatiedatum | 2021-05-18 |
| Beoordeling | 5.00/5 Totaal 4 Beoordelingen |
| Ontwikkelaar | Domenico Gemoli |
| [email protected] | |
| Betalingswijze | free |
| Extensiewebsite | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| Help Pagina-URL | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| Ondersteunde Talen | 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"
]
} | |