Previous Tab
Switch back to the previously active tab using the keyboard.
Previous Tabとは何ですか?
Previous Tabはprevioustab.comによって開発されたChromeの拡張機能で、その主な機能は「Switch back to the previously active tab using the keyboard.」です。
拡張機能のスクリーンショット
Previous Tab拡張機能のCRXファイルをダウンロード
Previous Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Switch to the previously active tab (last tab) by pressing Ctrl+Q, or clicking the Previous Tab icon.
You can change the keyboard shortcut by visiting chrome://extensions/shortcuts .
Previous Tab does not require any permissions to install and use.
Chrome does not allow any extensions to use Ctrl+Tab or Ctrl+` as keyboard shortcuts.
The supported keys are Alt, Ctrl, Cmd along with:
A-Z, 0-9, Comma, Period, Home, End, PageUp, PageDown, Space, Insert, Delete, Arrow keys (Up, Down, Left, Right) and the Media Keys (MediaNextTrack, MediaPlayPause, MediaPrevTrack, MediaStop).
Donations are appreciated at donate.previoustab.com 拡張機能の基本情報
| 名前 | |
| ID | bjaniflnlhhofabpoamhnobeonjcjjpl |
| 公式URL | https://chromewebstore.google.com/detail/previous-tab/bjaniflnlhhofabpoamhnobeonjcjjpl |
| 説明 | Switch back to the previously active tab using the keyboard. |
| ファイルサイズ | 468 KB |
| インストール数 | 10,000 |
| 現在のバージョン | 1.0.2 |
| 最終更新日 | 2022-11-12 |
| 公開日 | 2020-02-28 |
| 評価 | 4.84/5 合計 97 レビュー |
| 開発者 | previoustab.com |
| Eメール | [email protected] |
| 支払い方法 | free |
| 対応言語 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Previous Tab",
"description": "Switch back to the previously active tab using the keyboard.",
"version": "1.0.2",
"manifest_version": 2,
"background": {
"persistent": true,
"scripts": [
"background.js"
]
},
"commands": {
"switch-to-previously-active-tab": {
"description": "Switch back to the previously active tab",
"suggested_key": {
"default": "Ctrl+Q",
"mac": "MacCtrl+Q"
}
}
},
"browser_action": {
"default_icon": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
},
"icons": {
"16": "icon_16.png",
"48": "icon_48.png",
"128": "icon_128.png"
}
} | |