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 هو إضافة Chrome تم تطويرها بواسطة 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 للإضافة Now You (Don't) See Me
قم بتنزيل ملفات الامتداد Now You (Don't) See Me بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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:\/\/*\/*" ] } |