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".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης MultiWindow Positioner
Λήψη αρχείων επέκτασης MultiWindow Positioner σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
* 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 Βασικές Πληροφορίες Επέκτασης
| Όνομα | |
| 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 |
| Διεύθυνση URL της Σελίδας Βοήθειας | 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"
]
} | |