Ultimate Guitar Randomiser
Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com
Vad är Ultimate Guitar Randomiser?
Ultimate Guitar Randomiser är en Chrome-tillägg utvecklad av Domenico Gemoli, och dess huvudfunktion är "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com".
Tilläggsskärmbilder
Ladda ner Ultimate Guitar Randomiser-förlängningens CRX-fil
Ladda ner Ultimate Guitar Randomiser-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | hakjookdamicmkhpnjamffoifnfkkldj |
| Officiell webbadress | https://chromewebstore.google.com/detail/ultimate-guitar-randomise/hakjookdamicmkhpnjamffoifnfkkldj |
| Beskrivning | Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com |
| Filstorlek | 33.82 KB |
| Antal Installationer | 135 |
| Aktuell Version | 1.2.1 |
| Senast Uppdaterad | 2023-12-04 |
| Publiceringsdatum | 2021-05-18 |
| Betyg | 5.00/5 Totalt 4 Betyg |
| Utvecklare | Domenico Gemoli |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| Hjälpsida URL | http://github.com/aberonni/ultimate-guitar-randomiser-extension |
| Stödda Språk | 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"
]
} | |