Simple Tab
Access your apps on a new tab page
Wat is Simple Tab?
Simple Tab is een Chrome-extensie ontwikkeld door gyermich, en de belangrijkste functie is "Access your apps on a new tab page".
Extensie Screenshots
Download het CRX-bestand van de extensie Simple Tab
Download Simple Tab-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | ocbmfchgnfegdhnhaopiamakccnlkaga |
Officiële URL | https://chrome.google.com/webstore/detail/simple-tab/ocbmfchgnfegdhnhaopiamakccnlkaga |
Beschrijving | Access your apps on a new tab page |
Bestandsgrootte | 119 KB |
Aantal Installaties | 147 |
Huidige Versie | 1.2 |
Laatst Bijgewerkt | 2014-03-22 |
Publicatiedatum | 2014-03-22 |
Beoordeling | 5.00/5 Totaal 1 Beoordelingen |
Ontwikkelaar | gyermich |
Betalingswijze | free |
Ondersteunde Talen | 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" } } |