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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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

Thanks.                    

확장 프로그램 기본 정보

이름 Web Recycle Bin Web Recycle Bin
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"
        }
    }
}