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”。

擴展截圖

screenshot

下載ESB Window Positioner擴展crx文件

下載ESB Window Positioner擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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 ESB Window Positioner
ID hjlknhokmbkhaaifmhakglldciallloh
官方網址 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
}