Extensions Reloader
Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions"
Extensions Reloader란 무엇입니까?
Extensions Reloader은(는) https://www.wzmn.net에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions""입니다.
확장 프로그램 스크린샷
Extensions Reloader 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
If you've ever developed a Google Chrome™ extension, you might have wanted to automate the process of reloading your unpacked extension without the need of going through the extensions page. "Extensions Reloader" allows you to reload all unpacked extensions using 3 ways: 1- The extension's toolbar button 2- Browsing to "http://reload.extensions" 3- Keyboard shortcut The toolbar icon will reload unpacked extensions using a single click. The "reload by browsing" is intended for automating the reload process using "post build" scripts - just browse to "http://reload.extensions", and chrome will open with freshly reloaded extensions. Whenever a refresh is executed, a green "OK" badge will appear on Extensions Reloader's toolbar icon. ** This extension is open-source and available on GitHub: https://github.com/arikw/chrome-extensions-reloader
확장 프로그램 기본 정보
이름 | Extensions Reloader |
ID | fimgfedafeadlieiabdeeaodndnlbhid |
공식 URL | https://chromewebstore.google.com/detail/extensions-reloader/fimgfedafeadlieiabdeeaodndnlbhid |
설명 | Reload all unpacked extensions using the extension's toolbar button or by browsing to "http://reload.extensions" |
파일 크기 | 15.11 KB |
설치 횟수 | 14,847 |
현재 버전 | 1.15 |
최근 업데이트 | 2021-07-26 |
출시 날짜 | 2016-02-29 |
평점 | 4.29/5 총 126 개의 평점 |
개발자 | https://www.wzmn.net |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/arikw/chrome-extensions-reloader |
도움말 페이지 URL | https://github.com/arikw/chrome-extensions-reloader |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Extensions Reloader", "manifest_version": 2, "version": "1.15", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "background": { "page": "background.html" }, "commands": { "reload": { "description": "Reload all extensions in development", "suggested_key": { "default": "Alt+Shift+R" } } }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "tabs", "management", "storage", "webRequest", "webRequestBlocking", "http:\/\/reload.extensions\/" ], "browser_action": { "default_icon": "icon19.png", "default_title": "Reload Extensions" }, "description": "Reload all unpacked extensions using the extension's toolbar button or by browsing to \"http:\/\/reload.extensions\"" } |