Ultimate Guitar Randomiser
Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com
Ultimate Guitar Randomiser क्या है?
Ultimate Guitar Randomiser Domenico Gemoli द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Ultimate Guitar Randomiser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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.
एक्सटेंशन की मूल जानकारी
नाम | Ultimate Guitar Randomiser |
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" ] } |