Lone Tab
A new, unique session for every tab opened.
Cos'è Lone Tab?
Lone Tab è un'estensione di Chrome sviluppata da Ian Mckay, e la sua funzione principale è "A new, unique session for every tab opened.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Lone Tab
Scarica i file di estensione Lone Tab 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
With this extension enabled, each tab will have a unique session. This is particularly useful for software testers or those with a large amount of accounts for a specific site. To enable, click the icon and change the slider to the ON position. Any tabs created will now have it's own unique session.
Informazioni di Base sull'Estensione
Nome | Lone Tab |
ID | dlgodcdpmjmeegcakjjldfobmooajhhe |
URL Ufficiale | https://chromewebstore.google.com/detail/lone-tab/dlgodcdpmjmeegcakjjldfobmooajhhe |
Descrizione | A new, unique session for every tab opened. |
Dimensione del File | 20.03 KB |
Conteggio Installazioni | 541 |
Versione Corrente | 1.0.1 |
Ultimo Aggiornamento | 2021-07-30 |
Data di Pubblicazione | 2017-01-21 |
Valutazione | 3.79/5 Totale 14 Valutazioni |
Sviluppatore | Ian Mckay |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | http://files.ian.mn/privacy |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Lone Tab", "short_name": "Lone Tab", "version": "1.0.1", "manifest_version": 2, "author": "Ian Mckay", "description": "A new, unique session for every tab opened.", "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "icons": { "16": "icon-16.png", "32": "icon-32.png", "128": "icon-128.png" }, "background": { "scripts": [ "common.js", "main.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ], "run_at": "document_start" } ], "web_accessible_resources": [ "inject.js", "common.js" ], "browser_action": { "default_popup": "popup.html" }, "permissions": [ "webRequest", "webRequestBlocking", "storage", "*:\/\/*\/*" ] } |