New Tab As Apps

Causes the new tab to default to the Apps view instead of the google splash view.

什么是New Tab As Apps?

New Tab As Apps是由http://holtstrom.com开发的Chrome扩展程序,该扩展的主要功能是“Causes the new tab to default to the Apps view instead of the google splash view.”。

扩展截图

screenshot

下载New Tab As Apps扩展crx文件

下载New Tab As Apps扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        While installed, new tabs default to 'chrome://apps/'

Updated Dec 2019 because it stopped working. Fixed by changing url to pendingUrl.

This extension will always be free and will never have ads.

This extension was created in response to Chrome's Feb 2014 removal of the "Enable Instant Extended API" that let you default your new tab to the Apps view.

The source code is very simple and is posted online, so you can inspect it for yourself.

http://holtstrom.com/michael/blog/post/486/New-Tab-As-Apps-Chrome-Extension.html

If you prefer, you can instead use my "Home Button At Top Right" extension (https://chrome.google.com/webstore/detail/home-button-at-top-right/bfejcgpdahgpmgadhgdadfiekmhgnifm) which lets you (via right-click Options) toggle on/off the new-tabs-as-apps feature.                    

扩展基本信息

名称 New Tab As Apps New Tab As Apps
ID fmganoiddmbjfgmdpnkmiconhkbibilk
官方URL https://chrome.google.com/webstore/detail/new-tab-as-apps/fmganoiddmbjfgmdpnkmiconhkbibilk
简介 Causes the new tab to default to the Apps view instead of the google splash view.
文件大小 4.75 KB
安装次数 749
当前版本 1.1
更新时间 2020-11-24
上架时间 2019-12-14
评分 4.93/5 共14次评分
开发者 http://holtstrom.com
电子邮箱 [email protected]
付费类型 free
扩展官网 http://holtstrom.com/michael/blog/post/486/New-Tab-As-Apps-Chrome-Extension.html
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab As Apps",
    "description": "Causes the new tab to default to the Apps view instead of the google splash view.",
    "version": "1.1",
    "permissions": [
        "tabs"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}