Urban Lyrics
A Chrome extension to view lyrics.
Urban Lyrics là gì?
Urban Lyrics là một tiện ích mở rộng Chrome được phát triển bởi Leon Li, và tính năng chính của nó là "A Chrome extension to view lyrics.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Urban Lyrics
Tải xuống các tệp mở rộng Urban Lyrics 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
An extension that provides its user with lyrics to a song with the click of a button. It also has integrated search boxes for word definitions by Urban Dictionary and also for custom song lookups. At the end of the song lyrics is also a Genius link for the current song displayed.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Urban Lyrics |
ID | akahkofaophahlgdibcfelkfnamedong |
URL Chính Thức | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
Mô tả | A Chrome extension to view lyrics. |
Kích Thước Tệp | 807 KB |
Số Lần Cài Đặt | 392 |
Phiên Bản Hiện Tại | 2.2 |
Cập Nhật Lần Cuối | 2021-01-10 |
Ngày Phát Hành | 2020-10-19 |
Đánh Giá | 4.63/5 Tổng số 27 Đánh Giá |
Nhà Phát Triển | Leon Li |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://leonli.cc |
URL Trang Trợ Giúp | https://github.com/leon-li1/Urban-Lyrics |
Ngôn Ngữ Được Hỗ Trợ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Urban Lyrics", "version": "2.2", "manifest_version": 2, "description": "A Chrome extension to view lyrics.", "icons": { "16": "icons\/UrbanLyrics-16.png", "48": "icons\/UrbanLyrics-48.png", "128": "icons\/UrbanLyrics-128.png" }, "browser_action": { "default_title": "Urban Lyrics", "default_popup": "popup.html" }, "default_locale": "en", "background": { "scripts": [ "js\/background.js" ], "persistent": false }, "permissions": [ "storage", "https:\/\/fonts.googleapis.com\/*" ], "content_security_policy": "default-src 'self'; connect-src *; font-src *; style-src-elem * 'unsafe-inline'; script-src-elem * ; style-src 'unsafe-inline'", "content_scripts": [ { "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ "js\/content.js" ] } ], "incognito": "not_allowed" } |