Web Recycle Bin
Reopen a closed tab
What is Web Recycle Bin?
Web Recycle Bin is a Chrome extension developed by archilleu, and its main feature is "Reopen a closed tab".
Extension Screenshots
Download Web Recycle Bin Extension CRX File
Download Web Recycle Bin extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
记录关闭的标签页 特性: 1. 自动记录关闭的标签页,按照关闭时间排序。 2. 显示标签当前/总页数,每页12条记录,提供上下页按钮。 3. 点击标签项目可以在原来选项卡位置打开标签页。 4. 可以清空所有标签页。 5. 可以在所有的chrome窗口共享标签页。 注意:因为记录在内存中,关闭chrome会清空所有的记录! Thanks.
Extension Basic Information
Name | |
ID | neabikjncmoneefeceheidhfceoomjod |
Official URL | https://chrome.google.com/webstore/detail/web-recycle-bin/neabikjncmoneefeceheidhfceoomjod |
Description | Reopen a closed tab |
File Size | 51.64 KB |
Installation Count | 317 |
Current Version | 1.0.5 |
Last Updated | 2022-02-08 |
Publish Date | 2019-08-30 |
Rating | 3.00/5 Total 2 Ratings |
Developer | archilleu |
[email protected] | |
Payment Type | free |
Supported Languages | 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" } } } |