Pimp your 'New Tab'

Pimp your 'New Tab' - open any website or URL!

Pimp your 'New Tab'คืออะไร?

Pimp your 'New Tab' เป็นส่วนขยายของ Chrome ที่พัฒนาโดย jimmyff และคุณลักษณะหลักของมันคือ "Pimp your 'New Tab' - open any website or URL!"

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

screenshot

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

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

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

                        A super simple extension that allows you to customise your 'New Tab' page by setting it to redirect to a specific URL or website. I created this as the other New Tab redirect extensions all seem to be full of spyware! 

View & download the source code:
https://github.com/jimmyff/chome-new-tab

Permission explanation: The extension requires the 'Storage' permission to save your desired URL and the 'Tab' permission to change the URL of your 'New Tab' page. I could remove the tab permission and use the 'new tab override' method but if I did it this way, there would be no way to disable the custom page without disabling the whole extension. Also it would not put the cursor in the address bar. When Chrome adds functionality to allow temporary overrides I will change the implementation to support it.

 Happy pimpin! ^_^                    

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

ชื่อ Pimp your 'New Tab' Pimp your 'New Tab'
ID bafonlnpjoogacbjiffcbadecdgamjgb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/pimp-your-new-tab/bafonlnpjoogacbjiffcbadecdgamjgb
คำอธิบาย Pimp your 'New Tab' - open any website or URL!
ขนาดไฟล์ 7.93 KB
จำนวนการติดตั้ง 158
เวอร์ชันปัจจุบัน 1.0.2
อัปเดตครั้งล่าสุด 2016-02-24
วันที่เผยแพร่ 2016-02-24
คะแนน 4.10/5 รวมทั้งหมด 10 คะแนน
ผู้พัฒนา jimmyff
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "options.html"
    },
    "description": "Pimp your 'New Tab' - open any website or URL!",
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "name": "Pimp your 'New Tab'",
    "options_page": "options.html",
    "permissions": [
        "tabs",
        "storage"
    ],
    "version": "1.0.2"
}