Ultimate Guitar Randomiser
Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com
Qu'est-ce que Ultimate Guitar Randomiser ?
Ultimate Guitar Randomiser est une extension Chrome développée par Domenico Gemoli, et sa fonction principale est "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Ultimate Guitar Randomiser
Téléchargez les fichiers d'extension Ultimate Guitar Randomiser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Ultimate Guitar Randomiser |
ID | hakjookdamicmkhpnjamffoifnfkkldj |
URL Officiel | https://chromewebstore.google.com/detail/ultimate-guitar-randomise/hakjookdamicmkhpnjamffoifnfkkldj |
Description | Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com |
Taille du Fichier | 33.82 KB |
Nombre d'Installations | 135 |
Version Actuelle | 1.2.1 |
Dernière Mise à Jour | 2023-12-04 |
Date de Publication | 2021-05-18 |
Évaluation | 5.00/5 Total 4 Évaluations |
Développeur | Domenico Gemoli |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
URL de la Page d'Aide | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
Langues Prises en Charge | 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" ] } |