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.

Τι είναι το Most Recent Used Tab Stack;

Το Most Recent Used Tab Stack είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον brandon, και η κύρια λειτουργία του είναι "Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.".

Στιγμιότυπα Επέκτασης

Λήψη αρχείου CRX της επέκτασης Most Recent Used Tab Stack

Λήψη αρχείων επέκτασης Most Recent Used Tab Stack σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Most Recent Used Tab Stack Most Recent Used Tab Stack
ID kbedhikfgjjlhibaoafccbkeeppnhage
Επίσημο URL https://chromewebstore.google.com/detail/most-recent-used-tab-stac/kbedhikfgjjlhibaoafccbkeeppnhage
Περιγραφή Moves your most recent tab to the front (or back) of your stack. View options for update log. Works with pinned tabs.
Μέγεθος Αρχείου 15.78 KB
Αριθμός Εγκαταστάσεων 252
Τρέχουσα Έκδοση 1.5
Τελευταία Ενημέρωση 2021-06-04
Ημερομηνία Δημοσίευσης 2018-02-07
Αξιολόγηση 4.92/5 Συνολικά 12 Αξιολογήσεις
Προγραμματιστής brandon
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Υποστηριζόμενες Γλώσσες 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."
        }
    }
}