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 | 
| 公式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 | 
| Eメール | [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"
    }
}  |  |