Tab Position Customizer - Modified

A extension for position of tabs

什么是Tab Position Customizer - Modified?

Tab Position Customizer - Modified是由Kristoffer开发的Chrome扩展程序,该扩展的主要功能是“A extension for position of tabs”。

扩展截图

screenshot
screenshot
screenshot

下载Tab Position Customizer - Modified扩展crx文件

下载Tab Position Customizer - Modified扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Tab Position Customizer - Modified Tab Position Customizer - Modified
ID kkhcdbdhbmegbbhgmdhhpfmjhlhjlghp
官方URL https://chromewebstore.google.com/detail/tab-position-customizer-m/kkhcdbdhbmegbbhgmdhhpfmjhlhjlghp
简介 A extension for position of tabs
文件大小 666 KB
安装次数 5,684
当前版本 1.4.1
更新时间 2021-11-15
上架时间 2020-06-24
评分 4.18/5 共33次评分
开发者 Kristoffer
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified/
帮助页面URL https://github.com/Hywela/Tab-Postion-Cuztomizer-Modified/issues
支持的语言 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"
        }
    }
}