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
擴展基本資訊
名稱 | |
ID | fnljlhcgjoehmlmodjgejheenbacnjke |
官方網址 | 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" } } |