Maximize Detached Tab
Maximizes tab that is dragged from a maximized window.
Maximize Detached Tab क्या है?
Maximize Detached Tab tberghuis द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Maximizes tab that is dragged from a maximized window."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Maximize Detached Tab एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |