Maximize Detached Tab
Maximizes tab that is dragged from a maximized window.
Vad är Maximize Detached Tab?
Maximize Detached Tab är en Chrome-tillägg utvecklad av tberghuis, och dess huvudfunktion är "Maximizes tab that is dragged from a maximized window.".
Tilläggsskärmbilder
Ladda ner Maximize Detached Tab-förlängningens CRX-fil
Ladda ner Maximize Detached Tab-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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 Grundläggande Information om Tillägg
| Namn | |
| ID | fnljlhcgjoehmlmodjgejheenbacnjke |
| Officiell webbadress | https://chromewebstore.google.com/detail/maximize-detached-tab/fnljlhcgjoehmlmodjgejheenbacnjke |
| Beskrivning | Maximizes tab that is dragged from a maximized window. |
| Filstorlek | 9.49 KB |
| Antal Installationer | 52 |
| Aktuell Version | 0.0.2 |
| Senast Uppdaterad | 2022-05-05 |
| Publiceringsdatum | 2022-05-04 |
| Utvecklare | tberghuis |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/tberghuis/maximize-detached-tab/ |
| Hjälpsida URL | https://github.com/tberghuis/maximize-detached-tab/issues |
| Stödda Språk | 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"
}
} | |