Ultimate Guitar Randomiser

Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com

Ultimate Guitar Randomiserคืออะไร?

Ultimate Guitar Randomiser เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Domenico Gemoli และคุณลักษณะหลักของมันคือ "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Ultimate Guitar Randomiser

ดาวน์โหลดไฟล์ส่วนขยาย Ultimate Guitar Randomiser ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
    ]
}