MultiWindow Positioner

Tool extension that enables effective window positioning/placement in multi-monitor setups

ما هو MultiWindow Positioner؟

MultiWindow Positioner هو إضافة Chrome تم تطويرها بواسطة Control€xpert GmbH، والميزة الرئيسية لها هي "Tool extension that enables effective window positioning/placement in multi-monitor setups".

لقطات شاشة التمديد

screenshot
screenshot
screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة MultiWindow Positioner

قم بتنزيل ملفات الامتداد MultiWindow Positioner بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        * Flexible positioning options via Rules concept
* Multi-monitor support
* Validation of rules configuration against existent Monitor.
* Easy monitor detection
* Configuration templates support. It enables user profiles in large organizations and distributed environments.
* Automatic manual positioning detection that saves into existent rules.
* Default monitor support, for intelligent monitor pre-selection.
* Custom positions support                    

معلومات أساسية عن التمديد

الاسم MultiWindow Positioner MultiWindow Positioner
ID hmgehpjpfhobbnhhelhlggjfcaollidl
عنوان URL الرسمي https://chromewebstore.google.com/detail/multiwindow-positioner/hmgehpjpfhobbnhhelhlggjfcaollidl
الوصف Tool extension that enables effective window positioning/placement in multi-monitor setups
حجم الملف 3.47 MB
عدد التثبيتات 20,000
النسخة الحالية 1.0.19
آخر تحديث 2021-04-21
تاريخ النشر 2019-03-21
تقييم 4.75/5 مجموع تقييمات 16
المطور Control€xpert GmbH
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/ControlExpert/chrome-multiwindow-positioner
عنوان صفحة المساعدة https://github.com/ControlExpert/chrome-multiwindow-positioner/issues
اللغات المدعومة de,en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_appName__",
    "short_name": "MWP",
    "version": "1.0.19",
    "default_locale": "en",
    "description": "__MSG_appDescription__",
    "author": "Igor Lino @ ControlExpert",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "homepage_url": "https:\/\/github.com\/ControlExpert\/chrome-multiwindow-positioner",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "permissions": [
        "system.display",
        "tabs"
    ],
    "options_ui": {
        "page": "options.html",
        "chrome_style": true,
        "open_in_tab": true
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/contentscript.js"
            ],
            "run_at": "document_end",
            "all_frames": false
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/igorlino.github.io\/*"
        ]
    },
    "web_accessible_resources": [
        "images\/icon-48.png",
        "images\/options-loader.gif"
    ]
}