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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jim Schubert และคุณลักษณะหลักของมันคือ "Allows a user to provide the URL of the page that loads in a new tab."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย New Tab Redirect

ดาวน์โหลดไฟล์ส่วนขยาย New Tab Redirect ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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 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"
}