Ultimate Guitar Randomiser
Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com
Cos'è Ultimate Guitar Randomiser?
Ultimate Guitar Randomiser è un'estensione di Chrome sviluppata da Domenico Gemoli, e la sua funzione principale è "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Ultimate Guitar Randomiser
Scarica i file di estensione Ultimate Guitar Randomiser in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | hakjookdamicmkhpnjamffoifnfkkldj |
| URL Ufficiale | https://chromewebstore.google.com/detail/ultimate-guitar-randomise/hakjookdamicmkhpnjamffoifnfkkldj |
| Descrizione | Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com |
| Dimensione del File | 33.82 KB |
| Conteggio Installazioni | 135 |
| Versione Corrente | 1.2.1 |
| Ultimo Aggiornamento | 2023-12-04 |
| Data di Pubblicazione | 2021-05-18 |
| Valutazione | 5.00/5 Totale 4 Valutazioni |
| Sviluppatore | Domenico Gemoli |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| URL della Pagina di Aiuto | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| Lingue Supportate | 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"
]
} | |