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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" } } |