Close other tabs
Browser extension to close other tabs
Vad är Close other tabs?
Close other tabs är en Chrome-tillägg utvecklad av nunofaria11, och dess huvudfunktion är "Browser extension to close other tabs".
Tilläggsskärmbilder
Ladda ner Close other tabs-förlängningens CRX-fil
Ladda ner Close other tabs-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
A simple extension that provides a quick way of closing every other tab in window. Grundläggande Information om Tillägg
| Namn | |
| ID | cohclepbfkicjacnladehmbiepoaobmm |
| Officiell webbadress | https://chrome.google.com/webstore/detail/cohclepbfkicjacnladehmbiepoaobmm |
| Beskrivning | Browser extension to close other tabs |
| Filstorlek | 5.51 KB |
| Antal Installationer | 33 |
| Aktuell Version | 1.0.2 |
| Senast Uppdaterad | 2019-11-08 |
| Publiceringsdatum | 2019-11-08 |
| Betyg | 5.00/5 Totalt 2 Betyg |
| Utvecklare | nunofaria11 |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/nunofaria11/close-other-tabs-ext |
| Stödda Språk | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Close other tabs",
"version": "1.0.2",
"description": "Browser extension to close other tabs",
"author": "Nuno Faria",
"homepage_url": "https:\/\/github.com\/nunofaria11\/close-other-tabs-ext",
"manifest_version": 2,
"permissions": [
"contextMenus",
"tabs"
],
"background": {
"scripts": [
"main.js"
]
},
"browser_action": {
"default_icon": {
"16": "icons\/close_16.png",
"32": "icons\/close_32.png",
"64": "icons\/close_64.png"
}
},
"icons": {
"16": "icons\/close_16.png",
"32": "icons\/close_32.png",
"64": "icons\/close_64.png"
}
} | |