YouTube Row Fixer
The chrome extension for Increasing the videos per row.
什么是YouTube Row Fixer?
YouTube Row Fixer是由sapondanaisriwan开发的Chrome扩展程序,该扩展的主要功能是“The chrome extension for Increasing the videos per row.”。
扩展截图
下载YouTube Row Fixer扩展crx文件
下载YouTube Row Fixer扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
The chrome extension for Increasing the videos per row on all pages. Source Code: https://github.com/sapondanaisriwan/youtube-row-fixer Bug Report: https://github.com/sapondanaisriwan/youtube-row-fixer/issues
扩展基本信息
名称 | YouTube Row Fixer |
ID | kehjfphhkfppnnjhdfhanmehkegdppho |
官方URL | https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho |
简介 | The chrome extension for Increasing the videos per row. |
文件大小 | 70.62 KB |
安装次数 | 809 |
当前版本 | 1.0.4 |
更新时间 | 2023-12-03 |
上架时间 | 2023-06-03 |
评分 | 4.41/5 共27次评分 |
开发者 | sapondanaisriwan |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/sapondanaisriwan/youtube-row-fixer |
帮助页面URL | https://github.com/sapondanaisriwan/youtube-row-fixer/issues |
支持的语言 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "YouTube Row Fixer", "description": "The chrome extension for Increasing the videos per row.", "version": "1.0.4", "permissions": [ "tabs", "storage" ], "action": { "default_popup": "popup.html" }, "icons": { "16": ".\/asset\/img\/icon-16.png", "32": ".\/asset\/img\/icon-32.png", "48": ".\/asset\/img\/icon-48.png", "64": ".\/asset\/img\/icon-64.png", "128": ".\/asset\/img\/icon-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "https:\/\/www.youtube.com\/*" ], "js": [ ".\/variables.js", ".\/content-script.js" ] } ], "web_accessible_resources": [ { "resources": [ "js\/main.js" ], "matches": [ "https:\/\/www.youtube.com\/*" ] } ], "background": { "service_worker": "background.js" } } |