Simple Tab
Access your apps on a new tab page
What is Simple Tab?
Simple Tab is a Chrome extension developed by gyermich, and its main feature is "Access your apps on a new tab page".
Extension Screenshots
Download Simple Tab Extension CRX File
Download Simple Tab extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | ocbmfchgnfegdhnhaopiamakccnlkaga |
Official URL | https://chrome.google.com/webstore/detail/simple-tab/ocbmfchgnfegdhnhaopiamakccnlkaga |
Description | Access your apps on a new tab page |
File Size | 119 KB |
Installation Count | 147 |
Current Version | 1.2 |
Last Updated | 2014-03-22 |
Publish Date | 2014-03-22 |
Rating | 5.00/5 Total 1 Ratings |
Developer | gyermich |
Payment Type | free |
Supported Languages | 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" } } |