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はbrandonによって開発されたChromeの拡張機能で、その主な機能は「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拡張機能のCRXファイルをダウンロード
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 |
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 |
Eメール | [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." } } } |