Simple Tab
Access your apps on a new tab page
Simple Tabとは何ですか?
Simple Tabはgyermichによって開発されたChromeの拡張機能で、その主な機能は「Access your apps on a new tab page」です。
拡張機能のスクリーンショット
Simple Tab拡張機能のCRXファイルをダウンロード
Simple Tab拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | |
ID | ocbmfchgnfegdhnhaopiamakccnlkaga |
公式URL | https://chrome.google.com/webstore/detail/simple-tab/ocbmfchgnfegdhnhaopiamakccnlkaga |
説明 | Access your apps on a new tab page |
ファイルサイズ | 119 KB |
インストール数 | 147 |
現在のバージョン | 1.2 |
最終更新日 | 2014-03-22 |
公開日 | 2014-03-22 |
評価 | 5.00/5 合計 1 レビュー |
開発者 | gyermich |
支払い方法 | free |
対応言語 | 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" } } |