New Tab As Apps

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

New Tab As Apps là gì?

New Tab As Apps là một tiện ích mở rộng Chrome được phát triển bởi http://holtstrom.com, và tính năng chính của nó là "Causes the new tab to default to the Apps view instead of the google splash view.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng New Tab As Apps

Tải xuống các tệp mở rộng New Tab As Apps dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên New Tab As Apps New Tab As Apps
ID fmganoiddmbjfgmdpnkmiconhkbibilk
URL Chính Thức https://chrome.google.com/webstore/detail/new-tab-as-apps/fmganoiddmbjfgmdpnkmiconhkbibilk
Mô tả Causes the new tab to default to the Apps view instead of the google splash view.
Kích Thước Tệp 4.75 KB
Số Lần Cài Đặt 749
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2020-11-24
Ngày Phát Hành 2019-12-14
Đánh Giá 4.93/5 Tổng số 14 Đánh Giá
Nhà Phát Triển http://holtstrom.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng http://holtstrom.com/michael/blog/post/486/New-Tab-As-Apps-Chrome-Extension.html
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}