New Tab Embed

Embeds any website you want directly into your new tab page

Co to jest New Tab Embed?

New Tab Embed to rozszerzenie Chrome opracowane przez https://www.aria.ai, a jego główną funkcją jest „Embeds any website you want directly into your new tab page”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia New Tab Embed

Pobierz pliki rozszerzeń New Tab Embed w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa New Tab Embed New Tab Embed
ID hiplgeehdfapdbfjjgackpmoffelepkk
Oficjalny URL https://chromewebstore.google.com/detail/new-tab-embed/hiplgeehdfapdbfjjgackpmoffelepkk
Opis Embeds any website you want directly into your new tab page
Rozmiar pliku 11.73 KB
Liczba instalacji 49
Aktualna Wersja 1.1.0
Ostatnia Aktualizacja 2018-03-01
Data Publikacji 2018-03-01
Deweloper https://www.aria.ai
Typ Płatności free
Obsługiwane Języki 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"
        ]
    }
}