New Tab Embed

Embeds any website you want directly into your new tab page

New Tab Embedคืออะไร?

New Tab Embed เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://www.aria.ai และคุณลักษณะหลักของมันคือ "Embeds any website you want directly into your new tab page"

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

screenshot
screenshot

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

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

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

                        Embed any website into your new tab page!

It requires pretty extensive permissions because it needs to work around websites that prevent you from embedding their content. The code is open source, and available here: https://github.com/AriaFallah/newtab                    

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

ชื่อ New Tab Embed New Tab Embed
ID hiplgeehdfapdbfjjgackpmoffelepkk
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/new-tab-embed/hiplgeehdfapdbfjjgackpmoffelepkk
คำอธิบาย Embeds any website you want directly into your new tab page
ขนาดไฟล์ 11.73 KB
จำนวนการติดตั้ง 49
เวอร์ชันปัจจุบัน 1.1.0
อัปเดตครั้งล่าสุด 2018-03-01
วันที่เผยแพร่ 2018-03-01
ผู้พัฒนา https://www.aria.ai
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab Embed",
    "version": "1.1.0",
    "manifest_version": 2,
    "description": "Embeds any website you want directly into your new tab page",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "chrome_url_overrides": {
        "newtab": "src\/newtab\/index.html"
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png",
        "default_popup": "src\/action\/index.html"
    },
    "permissions": [
        "storage",
        "tabs",
        "webRequest",
        "webRequestBlocking",
        ""
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ]
    }
}