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