Now You (Don't) See Me
This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.
Now You (Don't) See Me क्या है?
Now You (Don't) See Me swissashley द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Now You (Don't) See Me एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Sometimes I don't feel comfortable letting people see the content I am currently browsing when they passing by. Whenever you want to hide all of your tabs,this Chrome extension will help you to close all the tabs, save them into a temporary bookmark folder, and restore them later with one button. With this extension, users will be able to: - [ ] Hide ( & bookmark) all the tabs with one click. - [ ] Restore ( & remove the temporary bookmarks) all the tabs with one click. - [ ] Use Hotkey to hide & restore. "windows": "Ctrl+Shift+A", "mac": "Command+Shift+A", "chromeos": "Ctrl+Shift+A", "linux": "Ctrl+Shift+A" - [ ] Open your preset homepage when hiding all the tabs.
एक्सटेंशन की मूल जानकारी
नाम | Now You (Don't) See Me |
ID | chbfbamopjjdfodhafkjhpbolcpnijio |
आधिकारिक URL | https://chromewebstore.google.com/detail/now-you-dont-see-me/chbfbamopjjdfodhafkjhpbolcpnijio |
विवरण | This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button. |
फ़ाइल का आकार | 57.24 KB |
स्थापना संख्या | 433 |
वर्तमान संस्करण | 1.1 |
अंतिम अपडेट | 2016-09-29 |
प्रकाशन तिथि | 2016-09-29 |
रेटिंग | 5.00/5 कुल 17 रेटिंग्स |
डेवलपर | swissashley |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/swissashley/chrome-ext-now-you-dont-see-me |
समर्थित भाषाएँ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Now You (Don't) See Me", "description": "This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.", "version": "1.1", "browser_action": { "default_icon": "eye_orange.png" }, "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+Shift+A", "mac": "Command+Shift+A", "chromeos": "Ctrl+Shift+A", "linux": "Ctrl+Shift+A" } } }, "options_page": "options.html", "background": { "scripts": [ "background.js" ], "persistent": false }, "permissions": [ "activeTab", "tabs", "bookmarks", "storage", "http:\/\/*\/*", "https:\/\/*\/*" ] } |