Tab Position Customizer - Modified

A extension for position of tabs

Was ist Tab Position Customizer - Modified?

Tab Position Customizer - Modified ist eine Chrome-Erweiterung, die von Kristoffer entwickelt wurde, und ihr Hauptmerkmal ist "A extension for position of tabs".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Tab Position Customizer - Modified-Erweiterungs-CRX-Datei herunterladen

Laden Sie Tab Position Customizer - Modified-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Tab Position Customizer Modified.

- Modify opening and closing behavior of tabs
- Includes url matching for tab position

- Based on : Tab-Position-Customizer 2

Source Code: 
https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified                    

Grundlegende Informationen zur Erweiterung

Name Tab Position Customizer - Modified Tab Position Customizer - Modified
ID kkhcdbdhbmegbbhgmdhhpfmjhlhjlghp
Offizielle URL https://chromewebstore.google.com/detail/tab-position-customizer-m/kkhcdbdhbmegbbhgmdhhpfmjhlhjlghp
Beschreibung A extension for position of tabs
Dateigröße 666 KB
Installationsanzahl 5,684
Aktuelle Version 1.4.1
Letztes Update 2021-11-15
Veröffentlichungsdatum 2020-06-24
Bewertung 4.18/5 Insgesamt 33 Bewertungen
Entwickler Kristoffer
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified/
Hilfeseite URL https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified/issues
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab Position Customizer - Modified",
    "short_name": "Tab Position",
    "description": "A extension for position of tabs",
    "version": "1.4.1",
    "manifest_version": 2,
    "icons": {
        "48": "icons\/icon_48.png",
        "128": "icons\/icon_128.png",
        "256": "icons\/icon_256.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "default_locale": "en",
    "options_page": "options\/options.html",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation",
        "contextMenus"
    ],
    "commands": {
        "new_tab": {
            "suggested_key": {
                "default": "Alt+Shift+I"
            },
            "description": "Duplicate the current tab"
        },
        "duplicate_tab": {
            "suggested_key": {
                "default": "Alt+Shift+O"
            },
            "description": "Duplicate to a new window"
        },
        "close_tab": {
            "suggested_key": {
                "default": "Alt+Shift+P"
            },
            "description": "Pop highlighted tabs out to a new window"
        },
        "random_tab": {
            "suggested_key": {
                "default": "Alt+Shift+R"
            },
            "description": "New tab to the right"
        }
    }
}