SimpleUndoClose

A simple popup to undo closed tabs, just that and a bit more.

Что такое SimpleUndoClose?

SimpleUndoClose - это расширение Chrome, разработанное https://blandlifedev.blogspot.com, и его основная функция - "A simple popup to undo closed tabs, just that and a bit more.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения SimpleUndoClose

Скачайте файлы расширений SimpleUndoClose в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        A fork of the Sexy Undo Close Tab extension, with a simpler and minimal look.

SimpleUndoClose does not restore tabs with their tab history. If restored tabs with tab history is a must, check out SimpleUndoRecents:
https://chrome.google.com/webstore/detail/simpleundorecents/kaiblbjjcealhldhdnjhpjmckgclnbca

Basic usage:
- click the toolbar button, a popup showing closed tabs appear
- click on the closed page you want to restore
- keyboard navigation supported
- to delete a single entry, click the delete button at the lower right corner of the focused blue 

Changes and new features from fork:
- new option to set the page title instead of URL as the tooltip
- some UI rework done to the popup and options page
- code reworkings, mainly to facilitate the upgrade to manifest version 2
- keyboard navigation
- no ads

Updated changelog is in the extension option pages.

Retains the features of the Sexy Undo Close Tab extension.
Credits to J K of the Sexy Undo Close Tab extension.

--------

Help translate SimpleUndoClose!
http://blandlifedev.blogspot.sg/2013/05/simpleundoclose-update.html

--------

Reason For Permission Requests:

Your tabs and browsing activity
-> WHY: Required for use of the chrome.tabs API to detect tab status and to get the tab details

--------

Note:
Though the extension is v1.0 as there may still be bugs I've missed.
Please do feedback when something is not working, better if there are steps to replicate the problem.
Thanks :)                    

Основная информация о расширении

Название SimpleUndoClose SimpleUndoClose
ID emhohdghchmjepmigjojkehidlielknj
Официальный URL https://chromewebstore.google.com/detail/simpleundoclose/emhohdghchmjepmigjojkehidlielknj
Описание A simple popup to undo closed tabs, just that and a bit more.
Размер файла 65.94 KB
Количество установок 156,638
Текущая Версия 1.3.11
Последнее Обновление 2020-11-14
Дата публикации 2018-02-13
Рейтинг 4.41/5 Всего 442 оценок
Разработчик https://blandlifedev.blogspot.com
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения http://blandlifedev.blogspot.com/
Поддерживаемые языки en,es,hu,sr,ru,zh-CN,zh-TW,ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SimpleUndoClose",
    "version": "1.3.11",
    "manifest_version": 2,
    "default_locale": "en",
    "description": "__MSG_manifest_description__",
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icon-19-0.png",
            "38": "icon-38-0.png"
        },
        "default_title": "__MSG_manifest_toolbarbtn_tooltip__",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "common.js",
            "bg.js"
        ],
        "persistent": false
    },
    "commands": {
        "undo-latest": {
            "suggested_key": {
                "default": "Alt+Z",
                "mac": "MacCtrl+Z"
            },
            "description": "__MSG_manifest_kbshort1__"
        }
    },
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "unlimitedStorage",
        "chrome:\/\/favicon\/"
    ]
}