ESB Window Positioner
Tool to auto position window in particular display when navigate
ESB Window Positioner là gì?
ESB Window Positioner là một tiện ích mở rộng Chrome được phát triển bởi PT. Esensi Solusi Buana, và tính năng chính của nó là "Tool to auto position window in particular display when navigate".
Ả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 ESB Window Positioner
Tải xuống các tệp mở rộng ESB Window Positioner 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
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | ESB Window Positioner |
ID | hjlknhokmbkhaaifmhakglldciallloh |
URL Chính Thức | https://chromewebstore.google.com/detail/esb-window-positioner/hjlknhokmbkhaaifmhakglldciallloh |
Mô tả | Tool to auto position window in particular display when navigate |
Kích Thước Tệp | 174 KB |
Số Lần Cài Đặt | 2,036 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2023-06-06 |
Ngày Phát Hành | 2022-09-03 |
Nhà Phát Triển | PT. Esensi Solusi Buana |
[email protected] | |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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 } |