YouTube Genius
Get lyrics provided by Genius on YouTube videos
YouTube Geniusとは何ですか?
YouTube Geniusはhttps://youtube-genius.comによって開発されたChromeの拡張機能で、その主な機能は「Get lyrics provided by Genius on YouTube videos」です。
拡張機能のスクリーンショット
YouTube Genius拡張機能のCRXファイルをダウンロード
YouTube Genius拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
This extension allows you to view and listen YouTube music videos alongside the lyrics. Lyrics are placed inside the YouTube page itself so you don't need to open a separate tab in order to read the lyrics of your favorite songs. 拡張機能の基本情報
| 名前 | |
| ID | lmnandahjhfgfimknapgffcjojmnihjn |
| 公式URL | https://chromewebstore.google.com/detail/youtube-genius/lmnandahjhfgfimknapgffcjojmnihjn |
| 説明 | Get lyrics provided by Genius on YouTube videos |
| ファイルサイズ | 32.74 KB |
| インストール数 | 890 |
| 現在のバージョン | 1.3.5 |
| 最終更新日 | 2022-08-27 |
| 公開日 | 2019-02-14 |
| 評価 | 3.89/5 合計 19 レビュー |
| 開発者 | https://youtube-genius.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "YouTube Genius",
"version": "1.3.5",
"description": "Get lyrics provided by Genius on YouTube videos",
"icons": {
"16": "Icon16.png",
"48": "Icon48.png",
"128": "Icon128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/www.youtube.com\/*"
],
"css": [
"main.css"
],
"js": [
"index.js"
],
"run_at": "document_end"
}
],
"background": {
"service_worker": "background.js"
},
"web_accessible_resources": [
{
"resources": [
"app.js",
"main.css"
],
"matches": [
"https:\/\/www.youtube.com\/*"
],
"use_dynamic_url": true
}
],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self'",
"sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'self'"
},
"action": {
"default_icon": {
"16": "Icon16.png",
"48": "Icon48.png",
"128": "Icon128.png"
}
}
} | |