New Window to the Right

Opens a new window directly to the right of the current window and wraps when the window reaches the edge of the monitor.

Τι είναι το New Window to the Right;

Το New Window to the Right είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον sifounak, και η κύρια λειτουργία του είναι "Opens a new window directly to the right of the current window and wraps when the window reaches the edge of the monitor.".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης New Window to the Right

Λήψη αρχείων επέκτασης New Window to the Right σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        This Chrome extension opens new windows directly to the right of the current window (instead of Chrome's default cascading behavior).


Why does this matter?
=====================
Like many people, my Chrome window is always set to take the maximum vertical space on my monitor (but not the maximum horizontal space).

Unfortunately, whenever you open a new Chrome window, Chrome cascades new windows down and to the right by default. This means that every new window starts off with part of its window off screen.

That's extremely annoying!

There are 3 major features that make up the functionality of this extension:

Disable cascading:
------------------
This extension opens new windows directly to the right of the current window.

Right edge protection:
----------------------
Even better, this extension will also protect against opening a new window with any part of its window off screen to the right. In that case, the new window will open on the left side of the screen.

Multi-monitor support:
----------------------
New windows always fully appear on the same monitor from the window they were spawned from. (Note: The source monitor is determined by the location of the top left corner of the last focused window.)

This keeps windows from opening with their window split across multiple monitors or having a window appear on a different monitor than the one you were originally working on (less mental context switching).


I hope you find this as useful as I have!

Enjoy!                    

Βασικές Πληροφορίες Επέκτασης

Όνομα New Window to the Right New Window to the Right
ID chkpiahcifbmdhlnfjilnbljgijbhngg
Επίσημο URL https://chromewebstore.google.com/detail/new-window-to-the-right/chkpiahcifbmdhlnfjilnbljgijbhngg
Περιγραφή Opens a new window directly to the right of the current window and wraps when the window reaches the edge of the monitor.
Μέγεθος Αρχείου 7.53 KB
Αριθμός Εγκαταστάσεων 42
Τρέχουσα Έκδοση 3.1
Τελευταία Ενημέρωση 2018-08-02
Ημερομηνία Δημοσίευσης 2018-08-02
Προγραμματιστής sifounak
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Window to the Right",
    "version": "3.1",
    "description": "Opens a new window directly to the right of the current window and wraps when the window reaches the edge of the monitor.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "128": "NewWindowToTheRight.png"
        }
    },
    "icons": {
        "128": "NewWindowToTheRight.png"
    },
    "permissions": [
        "system.display",
        "declarativeContent"
    ]
}