Tab pinner
Pin or unpin tab.
什么是Tab pinner?
Tab pinner是由bibixx开发的Chrome扩展程序,该扩展的主要功能是“Pin or unpin tab.”。
扩展截图
下载Tab pinner扩展crx文件
下载Tab pinner扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        Simple extension for easily pinning and unpinning tabs using a button in a browser's toolbar.
## Features ##
  • Pin and unpin tabs using a toolbar button (or a keyboard shortcut)
  • Automatically pin tabs based on their url
  • Easily close the current tab by double clicking on a toolbar button (or by double pressing the keyboard shortcut)
## Issues ##
If you have any issues feel free to post them here
https://github.com/bibixx/tab-pinner/issues
Or write an email to
[email protected]
## Changelog ##
https://github.com/bibixx/tab-pinner/releases                     扩展基本信息
| 名称 |   |  
| ID | mcclikmfcmcpejkaobpfkmmbekbhedoi | 
| 官方URL | https://chromewebstore.google.com/detail/tab-pinner/mcclikmfcmcpejkaobpfkmmbekbhedoi | 
| 简介 | Pin or unpin tab. | 
| 文件大小 | 113 KB | 
| 安装次数 | 1,573 | 
| 当前版本 | 3.0.3 | 
| 更新时间 | 2023-03-21 | 
| 上架时间 | 2020-05-01 | 
| 评分 | 4.71/5 共7次评分 | 
| 开发者 | bibixx | 
| 电子邮箱 | [email protected] | 
| 付费类型 | free | 
| 帮助页面URL | https://github.com/bibixx/tab-pinner | 
| 支持的语言 | en,pl | 
| manifest.json | |
 {
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Tab pinner",
    "description": "__MSG_description__",
    "version": "3.0.3",
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "options_page": "options.html",
    "action": {
        "default_icon": {
            "16": "imgs\/icon_16.png",
            "48": "imgs\/icon_48.png",
            "128": "imgs\/icon_128.png",
            "256": "imgs\/icon_256.png"
        },
        "default_title": "__MSG_pin__"
    },
    "icons": {
        "16": "imgs\/icon_big_16.png",
        "48": "imgs\/icon_big_48.png",
        "128": "imgs\/icon_big_128.png",
        "256": "imgs\/icon_big_256.png"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "windows": "Ctrl+Shift+X",
                "mac": "Command+Shift+X",
                "chromeos": "Ctrl+Shift+X",
                "linux": "Ctrl+Shift+X"
            }
        }
    },
    "manifest_version": 3
}  |  |