Tab Uncloser
Restore your closed tabs easily
Tab Uncloser क्या है?
Tab Uncloser Carl Kibler द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Restore your closed tabs easily"।
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Tab Uncloser एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
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" ] } |