Simple Tab
Access your apps on a new tab page
Cos'è Simple Tab?
Simple Tab è un'estensione di Chrome sviluppata da gyermich, e la sua funzione principale è "Access your apps on a new tab page".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Simple Tab
Scarica i file di estensione Simple 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 the recent Chrome update you can no longer choose an option to display your apps in the default New Tab page. Simple Tab allows you to organize and launch your apps from your New Tab page.
Informazioni di Base sull'Estensione
Nome | |
ID | ocbmfchgnfegdhnhaopiamakccnlkaga |
URL Ufficiale | https://chrome.google.com/webstore/detail/simple-tab/ocbmfchgnfegdhnhaopiamakccnlkaga |
Descrizione | Access your apps on a new tab page |
Dimensione del File | 119 KB |
Conteggio Installazioni | 147 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2014-03-22 |
Data di Pubblicazione | 2014-03-22 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | gyermich |
Tipo di Pagamento | free |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Simple Tab", "description": "Access your apps on a new tab page", "version": "1.2", "permissions": [ "management", "tabs" ], "icons": { "128": "icon.png", "16": "icon.png", "32": "icon.png", "48": "icon.png", "64": "icon.png" }, "content_scripts": [ { "matches": [ "http:\/\/jquery.com\/*" ], "js": [ "jquery-2.1.0.js", "script.js", "jquery.gridster.js" ] } ], "background": { "scripts": [ "script.js" ], "persistent": false }, "chrome_url_overrides": { "newtab": "index.html" } } |