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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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"
    ]
}