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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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." } } } |