Most Recent Used Tab Stack
Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.
Was ist Most Recent Used Tab Stack?
Most Recent Used Tab Stack ist eine Chrome-Erweiterung, die von brandon entwickelt wurde, und ihr Hauptmerkmal ist "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.".
Erweiterungsscreenshots
Most Recent Used Tab Stack-Erweiterungs-CRX-Datei herunterladen
Laden Sie Most Recent Used Tab Stack-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension moves your most recently used (MRU) tab to the front or back. Allowing Ctrl+tab to work in most recently used order. This is an update to https://goo.gl/F0pGhZ to support the new api. Also works with pinned tabs. 1.5 - Simpler Code, fix to sometimes send the tab to the back. 1.4 - Fix to support chrome bug while tab.query is broken. 1.3 - Right to left support. 1.2 - Removed more permissions. Now doesn't need anything additional to function. 1.1 - Working with multiple windows now. Removed some unneeded permissions.
Grundlegende Informationen zur Erweiterung
Name | Most Recent Used Tab Stack |
ID | kbedhikfgjjlhibaoafccbkeeppnhage |
Offizielle URL | https://chromewebstore.google.com/detail/most-recent-used-tab-stac/kbedhikfgjjlhibaoafccbkeeppnhage |
Beschreibung | Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs. |
Dateigröße | 15.78 KB |
Installationsanzahl | 252 |
Aktuelle Version | 1.5 |
Letztes Update | 2021-06-04 |
Veröffentlichungsdatum | 2018-02-07 |
Bewertung | 4.92/5 Insgesamt 12 Bewertungen |
Entwickler | brandon |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Most Recent Used Tab Stack", "version": "1.5", "description": "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.", "short_name": "MRU Tab Stack", "background": { "persistant": false, "scripts": [ "bg.js" ] }, "options_ui": { "page": "options.html", "chrome_style": true }, "permissions": [ "storage" ], "commands": { "next": { "suggested_key": { "default": "Ctrl+Space" }, "description": "Same as Ctrl+Tab but won't sort until you let go." } } } |