Web Recycle Bin
Reopen a closed tab
什么是Web Recycle Bin?
Web Recycle Bin是由archilleu开发的Chrome扩展程序,该扩展的主要功能是“Reopen a closed tab”。
扩展截图
下载Web Recycle Bin扩展crx文件
下载Web Recycle Bin扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
记录关闭的标签页 特性: 1. 自动记录关闭的标签页,按照关闭时间排序。 2. 显示标签当前/总页数,每页12条记录,提供上下页按钮。 3. 点击标签项目可以在原来选项卡位置打开标签页。 4. 可以清空所有标签页。 5. 可以在所有的chrome窗口共享标签页。 注意:因为记录在内存中,关闭chrome会清空所有的记录! Thanks.
扩展基本信息
名称 | |
ID | neabikjncmoneefeceheidhfceoomjod |
官方URL | https://chrome.google.com/webstore/detail/web-recycle-bin/neabikjncmoneefeceheidhfceoomjod |
简介 | Reopen a closed tab |
文件大小 | 51.64 KB |
安装次数 | 317 |
当前版本 | 1.0.5 |
更新时间 | 2022-02-08 |
上架时间 | 2019-08-30 |
评分 | 3.00/5 共2次评分 |
开发者 | archilleu |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | zh-CN |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Web Recycle Bin", "short_name": "wrb", "description": "Reopen a closed tab", "version": "1.0.5", "browser_action": { "default_title": "Web Recycle Bin", "default_popup": "popup.html", "default_icon": "images\/recycle16.png" }, "icons": { "16": "images\/recycle16.png", "48": "images\/recycle48.png", "128": "images\/recycle128.png" }, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "background": { "scripts": [ "js\/background.js", "js\/tabs.js" ] }, "permissions": [ "tabs" ], "commands": { "_execute_browser_action": { "suggested_key": { "default": "Ctrl+Shift+Q", "mac": "MacCtrl+Shift+Q" }, "description": "Open undo website" } } } |