ESB Window Positioner

Tool to auto position window in particular display when navigate

ESB Window Positioner क्या है?

ESB Window Positioner PT. Esensi Solusi Buana द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Tool to auto position window in particular display when navigate"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में ESB Window Positioner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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
}