New Tab Embed

Embeds any website you want directly into your new tab page

New Tab Embed란 무엇입니까?

New Tab Embed은(는) https://www.aria.ai에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Embeds any website you want directly into your new tab page"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

New Tab Embed 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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