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開發的Chrome擴展程式,該擴展的主要功能是“Adds a "Random Tab" button to the "My tabs" page on Ultimate-Guitar.com”。
擴展截圖
下載Ultimate Guitar Randomiser擴展crx文件
下載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 |
ID | hakjookdamicmkhpnjamffoifnfkkldj |
官方網址 | 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" ] } |