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.”。
擴展截圖
下載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.
擴展基本資訊
名稱 | |
ID | fmganoiddmbjfgmdpnkmiconhkbibilk |
官方網址 | 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" } } |