Load More Extension
load more! load more! load more!
Load More Extension là gì?
Load More Extension là một tiện ích mở rộng Chrome được phát triển bởi sugumura, và tính năng chính của nó là "load more! load more! load more!".
Ả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 Load More Extension
Tải xuống các tệp mở rộng Load More Extension 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Load More Extension |
ID | oeajdfeikobhffmlfbmcgcdcaipfdkbg |
URL Chính Thức | https://chromewebstore.google.com/detail/load-more-extension/oeajdfeikobhffmlfbmcgcdcaipfdkbg |
Mô tả | load more! load more! load more! |
Kích Thước Tệp | 9.62 KB |
Số Lần Cài Đặt | 140 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2022-01-12 |
Ngày Phát Hành | 2022-01-12 |
Nhà Phát Triển | sugumura |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/sugumura/load-more-extension |
URL Trang Trợ Giúp | https://github.com/sugumura/load-more-extension/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |