Web Recycle Bin

Reopen a closed tab

什麼是Web Recycle Bin?

Web Recycle Bin是由archilleu開發的Chrome擴展程式,該擴展的主要功能是“Reopen a closed tab”。

擴展截圖

screenshot
screenshot

下載Web Recycle Bin擴展crx文件

下載Web Recycle Bin擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        记录关闭的标签页
特性:
1.  自动记录关闭的标签页,按照关闭时间排序。
2.  显示标签当前/总页数,每页12条记录,提供上下页按钮。
3.  点击标签项目可以在原来选项卡位置打开标签页。
4.  可以清空所有标签页。
5.  可以在所有的chrome窗口共享标签页。
注意:因为记录在内存中,关闭chrome会清空所有的记录!

Thanks.                    

擴展基本資訊

名稱 Web Recycle Bin Web Recycle Bin
ID neabikjncmoneefeceheidhfceoomjod
官方網址 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"
        }
    }
}