YouTube Row Fixer
The chrome extension for Increasing the videos per row.
YouTube Row Fixer là gì?
YouTube Row Fixer là một tiện ích mở rộng Chrome được phát triển bởi sapondanaisriwan, và tính năng chính của nó là "The chrome extension for Increasing the videos per row.".
Ả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 YouTube Row Fixer
Tải xuống các tệp mở rộng YouTube Row Fixer 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | YouTube Row Fixer |
ID | kehjfphhkfppnnjhdfhanmehkegdppho |
URL Chính Thức | https://chromewebstore.google.com/detail/youtube-row-fixer/kehjfphhkfppnnjhdfhanmehkegdppho |
Mô tả | The chrome extension for Increasing the videos per row. |
Kích Thước Tệp | 70.62 KB |
Số Lần Cài Đặt | 809 |
Phiên Bản Hiện Tại | 1.0.4 |
Cập Nhật Lần Cuối | 2023-12-03 |
Ngày Phát Hành | 2023-06-03 |
Đánh Giá | 4.41/5 Tổng số 27 Đánh Giá |
Nhà Phát Triển | sapondanaisriwan |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sapondanaisriwan/youtube-row-fixer |
URL Trang Trợ Giúp | https://github.com/sapondanaisriwan/youtube-row-fixer/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |