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.
Cos'è Now You (Don't) See Me?
Now You (Don't) See Me è un'estensione di Chrome sviluppata da swissashley, e la sua funzione principale è "This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Now You (Don't) See Me
Scarica i file di estensione Now You (Don't) See Me in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | chbfbamopjjdfodhafkjhpbolcpnijio |
| URL Ufficiale | https://chromewebstore.google.com/detail/now-you-dont-see-me/chbfbamopjjdfodhafkjhpbolcpnijio |
| Descrizione | This Chrome extension will help you to close all the tabs, save them into a temp folder, and restore them with one button. |
| Dimensione del File | 57.24 KB |
| Conteggio Installazioni | 433 |
| Versione Corrente | 1.1 |
| Ultimo Aggiornamento | 2016-09-29 |
| Data di Pubblicazione | 2016-09-29 |
| Valutazione | 5.00/5 Totale 17 Valutazioni |
| Sviluppatore | swissashley |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://github.com/swissashley/chrome-ext-now-you-dont-see-me |
| Lingue Supportate | 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:\/\/*\/*"
]
} | |