Toggle Last Tab
Toggle to your last tab using a keyboard shortcut.
什么是Toggle Last Tab?
Toggle Last Tab是由rawbytz开发的Chrome扩展程序,该扩展的主要功能是“Toggle to your last tab using a keyboard shortcut.”。
扩展截图
下载Toggle Last Tab扩展crx文件
下载Toggle Last Tab扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
• Supports multiple Chrome windows
• Supports "Create shortcut" windows
• You can click on the toolbar icon to activate too.
• Lightweight, no special permissions required 扩展基本信息
| 名称 | |
| ID | pplmknomeoikmohcigcdbmbanedfjbff |
| 官方URL | https://chromewebstore.google.com/detail/toggle-last-tab/pplmknomeoikmohcigcdbmbanedfjbff |
| 简介 | Toggle to your last tab using a keyboard shortcut. |
| 文件大小 | 12.28 KB |
| 安装次数 | 266 |
| 当前版本 | 0.1.3 |
| 更新时间 | 2019-04-29 |
| 上架时间 | 2019-04-29 |
| 评分 | 4.25/5 共4次评分 |
| 开发者 | rawbytz |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Toggle Last Tab",
"version": "0.1.3",
"description": "Toggle to your last tab using a keyboard shortcut.",
"browser_action": {
"default_icon": "TLT_128.png",
"default_title": "Toggle Last Tab"
},
"icons": {
"128": "TLT_128.png"
},
"background": {
"scripts": [
"background.js"
],
"persistent": true
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"default": "Alt+Q"
}
}
},
"manifest_version": 2
} | |