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.
擴展基本資訊
名稱 | YouTube Genius |
ID | lmnandahjhfgfimknapgffcjojmnihjn |
官方網址 | 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 |
電子郵箱 | [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" } } } |