New Tab Custom URL

New Tab Custom URL changes the default URL of a newly opened tab in chrome :o

New Tab Custom URLคืออะไร?

New Tab Custom URL เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://jakegines.in และคุณลักษณะหลักของมันคือ "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o"

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

screenshot

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

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

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

                        Chrome does not allow the user to customize the landing page upon opening a new tab. Today, that changes - with New Tab Custom URL!

This extension allows the user to seamlessly change the default URL of newly opened chrome tab to a website or a local file.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
คำอธิบาย New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
ขนาดไฟล์ 9.73 KB
จำนวนการติดตั้ง 50
เวอร์ชันปัจจุบัน 0.0.0.2
อัปเดตครั้งล่าสุด 2021-12-25
วันที่เผยแพร่ 2021-12-24
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา https://jakegines.in
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://jakegines.in/archive/New_Tab_Custom_URL
URL หน้านโยบายความเป็นส่วนตัว https://jakegines.in/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab Custom URL",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "description": "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o",
    "icons": {
        "64": "logo.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "New-Tab-Custom-URL"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}