YouTube Row Fixer
The chrome extension for Increasing the videos per row.
YouTube Row Fixerคืออะไร?
YouTube Row Fixer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sapondanaisriwan และคุณลักษณะหลักของมันคือ "The chrome extension for Increasing the videos per row."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย YouTube Row Fixer
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } |