Ultimate Guitar Randomiser

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

Ultimate Guitar Randomiser là gì?

Ultimate Guitar Randomiser là một tiện ích mở rộng Chrome được phát triển bởi Domenico Gemoli, và tính năng chính của nó là "Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Ultimate Guitar Randomiser

Tải xuống các tệp mở rộng Ultimate Guitar Randomiser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Ultimate Guitar Randomiser Ultimate Guitar Randomiser
ID hakjookdamicmkhpnjamffoifnfkkldj
URL Chính Thức https://chromewebstore.google.com/detail/ultimate-guitar-randomise/hakjookdamicmkhpnjamffoifnfkkldj
Mô tả Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com
Kích Thước Tệp 33.82 KB
Số Lần Cài Đặt 135
Phiên Bản Hiện Tại 1.2.1
Cập Nhật Lần Cuối 2023-12-04
Ngày Phát Hành 2021-05-18
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Domenico Gemoli
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://github.com/aberonni/ultimate-guitar-randomiser-extension
URL Trang Trợ Giúp http://github.com/aberonni/ultimate-guitar-randomiser-extension
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}