Tab Uncloser

Restore your closed tabs easily

ما هو Tab Uncloser؟

Tab Uncloser هو إضافة Chrome تم تطويرها بواسطة Carl Kibler، والميزة الرئيسية لها هي "Restore your closed tabs easily".

تحميل ملف CRX للإضافة Tab Uncloser

قم بتنزيل ملفات الامتداد Tab Uncloser بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Easily re-open your closed tabs, from seconds ago to months ago. Closed tabs are shown in a dropdown for quick access to recent items, but you can search the full history.

You can clear the tab history at any time with a single click as well to preserve privacy or clear out old data. 

Privacy: This extension sends zero tracking information to the author, ad sites, or anywhere else. All data is stored locally in your browser.

--

This extension is a fork of Sexy Undo Close Tabs, a great extension the author has abandoned. In current form it is nearly identical to the old extension but with ads insertion removed.                    

معلومات أساسية عن التمديد

الاسم Tab Uncloser Tab Uncloser
ID pdlkkmdnpkmgilgfenkjlmcamigelfmb
عنوان URL الرسمي https://chromewebstore.google.com/detail/tab-uncloser/pdlkkmdnpkmgilgfenkjlmcamigelfmb
الوصف Restore your closed tabs easily
حجم الملف 41.07 KB
عدد التثبيتات 537
النسخة الحالية 1.0
آخر تحديث 2016-06-14
تاريخ النشر 2016-06-13
تقييم 4.82/5 مجموع تقييمات 11
المطور Carl Kibler
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "background": {
        "page": "background.html"
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html",
        "default_title": "Undo closed tabs"
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/content.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "description": "Restore your closed tabs easily",
    "icons": {
        "128": "icon-128.png",
        "48": "icon.png"
    },
    "manifest_version": 2,
    "name": "Tab Uncloser",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "chrome:\/\/favicon\/",
        "webNavigation",
        "webRequest",
        "webRequestBlocking",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.0",
    "web_accessible_resources": [
        "blank.html"
    ]
}