Load More Extension
load more! load more! load more!
Load More Extensionคืออะไร?
Load More Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย sugumura และคุณลักษณะหลักของมันคือ "load more! load more! load more!"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Load More Extension
ดาวน์โหลดไฟล์ส่วนขยาย Load More Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Have you ever hit the "load more" button multiple times on a long, long issue on github? This extension automates that tedious task for you. Just click on the icon and it will show you all the abbreviated comments. If you have ever pressed the "load more" button more than once, you should use it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Load More Extension |
ID | oeajdfeikobhffmlfbmcgcdcaipfdkbg |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/load-more-extension/oeajdfeikobhffmlfbmcgcdcaipfdkbg |
คำอธิบาย | load more! load more! load more! |
ขนาดไฟล์ | 9.62 KB |
จำนวนการติดตั้ง | 140 |
เวอร์ชันปัจจุบัน | 1.0 |
อัปเดตครั้งล่าสุด | 2022-01-12 |
วันที่เผยแพร่ | 2022-01-12 |
ผู้พัฒนา | sugumura |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/sugumura/load-more-extension |
URL หน้าช่วยเหลือ | https://github.com/sugumura/load-more-extension/issues |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Load More Extension", "description": "load more! load more! load more!", "version": "1.0", "manifest_version": 3, "background": { "service_worker": "js\/background.js" }, "action": [], "content_scripts": [ { "matches": [ "https:\/\/github.com\/*\/*\/issues\/*", "https:\/\/github.com\/*\/*\/pull\/*" ], "js": [ "js\/content.js" ] } ], "options_ui": { "page": "views\/options.html", "open_in_tab": false }, "commands": { "load-more": { "suggested_key": { "default": "Ctrl+Shift+L", "mac": "Command+Shift+L" }, "description": "load more! load more! load more!" } }, "host_permissions": [ "https:\/\/github.com\/" ], "permissions": [ "activeTab", "notifications", "webRequest", "storage" ], "icons": { "16": "assets\/icons\/load_more_16.png", "48": "assets\/icons\/load_more_48.png", "128": "assets\/icons\/load_more_128.png" } } |