Maximize Detached Tab
Maximizes tab that is dragged from a maximized window.
什么是Maximize Detached Tab?
Maximize Detached Tab是由tberghuis开发的Chrome扩展程序,该扩展的主要功能是“Maximizes tab that is dragged from a maximized window.”。
扩展截图
下载Maximize Detached Tab扩展crx文件
下载Maximize Detached Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
This extension restores the behaviour of automatically maximising detached tabs. (behaviour removed chrome version 100) Dragged tag to automatically maximise if detached from maximised window. Source code: https://github.com/tberghuis/maximize-detached-tab
扩展基本信息
名称 | Maximize Detached Tab |
ID | fnljlhcgjoehmlmodjgejheenbacnjke |
官方URL | https://chromewebstore.google.com/detail/maximize-detached-tab/fnljlhcgjoehmlmodjgejheenbacnjke |
简介 | Maximizes tab that is dragged from a maximized window. |
文件大小 | 9.49 KB |
安装次数 | 52 |
当前版本 | 0.0.2 |
更新时间 | 2022-05-05 |
上架时间 | 2022-05-04 |
开发者 | tberghuis |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/tberghuis/maximize-detached-tab/ |
帮助页面URL | https://github.com/tberghuis/maximize-detached-tab/issues |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Maximize Detached Tab", "description": "Maximizes tab that is dragged from a maximized window.", "version": "0.0.2", "manifest_version": 3, "permissions": [ "storage" ], "background": { "service_worker": "background.js" }, "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } }, "icons": { "16": "\/images\/16.png", "32": "\/images\/32.png", "48": "\/images\/48.png", "128": "\/images\/128.png" } } |