New Tab Redirect
Allows a user to provide the URL of the page that loads in a new tab.
New Tab Redirect란 무엇입니까?
New Tab Redirect은(는) Jim Schubert에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Allows a user to provide the URL of the page that loads in a new tab."입니다.
확장 프로그램 스크린샷
New Tab Redirect 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Allows you to change the new tab page to the New Tab Redirect app page, or a custom URL of your choice! Choose from chrome's about pages, *NewTab, Extensions, Downloads, History*, a few popular URLs, or provide your own. Your custom tab can also be a local file, allowing you to create your own new tab page. Saving blank text will cause your new tab to be about:blank. Files can begin with: file:\\, file://, and file:/// Important: This is not meant to replace your homepage, only new tabs. If your browser is set to load the New Tab page as your homepage, there may be odd consequences. Note: Because this extension perform a "redirect", I have no control over address bar highlighting or focus. *********** Report Bugs *********** https://github.com/jimschubert/NewTab-Redirect/issues *********** Legal Stuff *********** I am not affiliated with Google or Google Chrome. Google Chrome is a registered trademark of Google, Inc. The 'Popular Pages' are taken from www.alexa.com/topsites. I am in no way affiliated with Google, Facebook, Twitter, Yahoo, Wikipedia, Digg, Slashdot or any other page listed here. These are provided as a convenience to the user of this extension. By using those pages or any others as a replacement for your new tab, you are still bound by any agreement between you and that site or service.
확장 프로그램 기본 정보
이름 | New Tab Redirect |
ID | icpgjfneehieebagbmdbhnlpiopdcmna |
공식 URL | https://chromewebstore.google.com/detail/new-tab-redirect/icpgjfneehieebagbmdbhnlpiopdcmna |
설명 | Allows a user to provide the URL of the page that loads in a new tab. |
파일 크기 | 1.52 MB |
설치 횟수 | 760,666 |
현재 버전 | 3.1.6 |
최근 업데이트 | 2023-10-25 |
출시 날짜 | 2019-07-06 |
평점 | 4.04/5 총 3134 개의 평점 |
개발자 | Jim Schubert |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/jimschubert/newtab-redirect |
도움말 페이지 URL | https://github.com/jimschubert/newtab-redirect/wiki |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "New Tab Redirect", "short_name": "NTR!", "description": "Allows a user to provide the URL of the page that loads in a new tab.", "version": "3.1.6", "background": { "service_worker": "js\/background.js" }, "options_page": "options.html", "chrome_url_overrides": { "newtab": "main.html" }, "permissions": [ "storage", "favicon" ], "host_permissions": [ "file:\/\/\/", "file:\/\/", "*:\/\/*" ], "optional_permissions": [ "tabs", "topSites", "management", "bookmarks" ], "icons": { "200": "images\/icon200.png", "128": "images\/icon128.png", "19": "images\/icon19.png" }, "incognito": "split", "minimum_chrome_version": "89" } |