Urban Lyrics
A Chrome extension to view lyrics.
什么是Urban Lyrics?
Urban Lyrics是由Leon Li开发的Chrome扩展程序,该扩展的主要功能是“A Chrome extension to view lyrics.”。
扩展截图
下载Urban Lyrics扩展crx文件
下载Urban Lyrics扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| ID | akahkofaophahlgdibcfelkfnamedong |
| 官方URL | https://chromewebstore.google.com/detail/urban-lyrics/akahkofaophahlgdibcfelkfnamedong |
| 简介 | A Chrome extension to view lyrics. |
| 文件大小 | 807 KB |
| 安装次数 | 392 |
| 当前版本 | 2.2 |
| 更新时间 | 2021-01-10 |
| 上架时间 | 2020-10-19 |
| 评分 | 4.63/5 共27次评分 |
| 开发者 | Leon Li |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://leonli.cc |
| 帮助页面URL | https://github.com/leon-li1/Urban-Lyrics |
| 支持的语言 | 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"
} | |