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.

Qu'est-ce que Most Recent Used Tab Stack ?

Most Recent Used Tab Stack est une extension Chrome développée par brandon, et sa fonction principale est "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.".

Captures d'Écran de l'Extension

Télécharger le fichier CRX de l'extension Most Recent Used Tab Stack

Téléchargez les fichiers d'extension Most Recent Used Tab Stack au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Most Recent Used Tab Stack Most Recent Used Tab Stack
ID kbedhikfgjjlhibaoafccbkeeppnhage
URL Officiel https://chromewebstore.google.com/detail/most-recent-used-tab-stac/kbedhikfgjjlhibaoafccbkeeppnhage
Description Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.
Taille du Fichier 15.78 KB
Nombre d'Installations 252
Version Actuelle 1.5
Dernière Mise à Jour 2021-06-04
Date de Publication 2018-02-07
Évaluation 4.92/5 Total 12 Évaluations
Développeur brandon
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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."
        }
    }
}