ESB Window Positioner
Tool to auto position window in particular display when navigate
ESB Window Positioner란 무엇입니까?
ESB Window Positioner은(는) PT. Esensi Solusi Buana에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Tool to auto position window in particular display when navigate"입니다.
확장 프로그램 스크린샷
ESB Window Positioner 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Tool to automatically position windows in a specific display when navigating to a specific URL. The ESB Window Positioner requires you to configure a particular URL and target screen. It will then scan the URL you are navigating to and will close the tab and open it in a new window in maximized state on the specified screen whenever the URL matches the specified one. The ESB Window will also provide you with a screen toggle button that will appear above of the displayed web page whenever the URL matches your URL configuration. This extension is particularly useful for kiosk-mode applications, where you would like a particular web page to open full screen on the specific screen.
확장 프로그램 기본 정보
이름 | ESB Window Positioner |
ID | hjlknhokmbkhaaifmhakglldciallloh |
공식 URL | https://chromewebstore.google.com/detail/esb-window-positioner/hjlknhokmbkhaaifmhakglldciallloh |
설명 | Tool to auto position window in particular display when navigate |
파일 크기 | 174 KB |
설치 횟수 | 2,036 |
현재 버전 | 1.1.0 |
최근 업데이트 | 2023-06-06 |
출시 날짜 | 2022-09-03 |
개발자 | PT. Esensi Solusi Buana |
이메일 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ESB Window Positioner", "version": "1.1.0", "description": "Tool to auto position window in particular display when navigate", "icons": { "16": "images\/logo.png", "24": "images\/logo.png", "32": "images\/logo.png" }, "action": { "default_icon": { "16": "images\/logo.png", "24": "images\/logo.png", "32": "images\/logo.png" }, "default_title": "ESB Window Positioner", "default_popup": "popup.html" }, "permissions": [ "system.display", "storage", "tabs", "webNavigation" ], "background": { "type": "module", "service_worker": "scripts\/background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "scripts\/content.js" ] } ], "web_accessible_resources": [ { "resources": [ "images\/switch.png", "styles\/content.css" ], "matches": [ "*:\/\/*\/*" ] } ], "manifest_version": 3 } |