Load More Extension
load more! load more! load more!
Load More Extension란 무엇입니까?
Load More Extension은(는) sugumura에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "load more! load more! load more!"입니다.
확장 프로그램 스크린샷
Load More Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } } |