Open Tabs Next to Current

Open new tabs to the right of the current one.

Τι είναι το Open Tabs Next to Current;

Το Open Tabs Next to Current είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sebastian Blask, και η κύρια λειτουργία του είναι "Open new tabs to the right of the current one.".

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

screenshot

Λήψη αρχείου CRX της επέκτασης Open Tabs Next to Current

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

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

                        Open Tabs Next To Current
=========================

Open tabs that would normally be opened last next to the current one. Tabs that are being re-opened are thus not included.  You can use `Ctrl-Y` (`Ctrl-Shift-Y` on Windows) to open a new tab at the default location.

Note for Chrome
---------------

Keyboard shortcuts are not automatically set up. You need to do that manually on the extension page in settings.

Note for Firefox
----------------

Tabs that are opened by clicking on links are opened at the default location.  You can change the setting `browser.tabs.insertRelatedAfterCurrent` in `about:config` if you want even those to be opened right next to the current. 

Known Issues
------------

Caused by limitations of the webextension API, see
https://github.com/sblask/webextension-open-tabs-next-to-current/issues/26
and
https://github.com/sblask/webextension-open-tabs-next-to-current/issues/29:

 - tabs are visibly moved to their final position
 - the tab bar is scrolled so the opened tab becomes the first visible one on
   the left (Firefox only)
 - when opening multiple tabs at once, only one of them is opened at the right
   position


Feedback
--------

You can report bugs or make feature requests on https://github.com/sblask/webextension-open-tabs-next-to-current

Patches are welcome.                    

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

Όνομα Open Tabs Next to Current Open Tabs Next to Current
ID gmpnnmonpnnmnhpdldahlekfofigiffh
Επίσημο URL https://chromewebstore.google.com/detail/open-tabs-next-to-current/gmpnnmonpnnmnhpdldahlekfofigiffh
Περιγραφή Open new tabs to the right of the current one.
Μέγεθος Αρχείου 55.82 KB
Αριθμός Εγκαταστάσεων 14,270
Τρέχουσα Έκδοση 2.0.14
Τελευταία Ενημέρωση 2021-05-31
Ημερομηνία Δημοσίευσης 2017-11-24
Αξιολόγηση 4.32/5 Συνολικά 88 Αξιολογήσεις
Προγραμματιστής Sebastian Blask
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/sblask/webextension-open-tabs-next-to-current
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/sblask/webextension-open-tabs-next-to-current
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "Sebastian Blask",
    "background": {
        "scripts": [
            "browser-polyfill.js",
            "background.js"
        ]
    },
    "commands": {
        "open-new-tab-at-default-location": {
            "description": "Open new tab at default location",
            "suggested_key": {
                "default": "Ctrl+Y",
                "windows": "Ctrl+Shift+Y"
            }
        }
    },
    "description": "Open new tabs to the right of the current one.",
    "homepage_url": "https:\/\/github.com\/sblask\/webextension-open-tabs-next-to-current",
    "icons": {
        "128": "icon-128x128.png",
        "16": "icon-16x16.png",
        "32": "icon-32x32.png",
        "48": "icon-48x48.png",
        "64": "icon-64x64.png"
    },
    "manifest_version": 2,
    "name": "Open Tabs Next to Current",
    "permissions": [
        "sessions"
    ],
    "version": "2.0.14"
}