IFrame New Tab

Embed a fullscreen iframe into your new tab page.

Was ist IFrame New Tab?

IFrame New Tab ist eine Chrome-Erweiterung, die von https://idreesinc.com entwickelt wurde, und ihr Hauptmerkmal ist "Embed a fullscreen iframe into your new tab page.".

Erweiterungsscreenshots

screenshot

IFrame New Tab-Erweiterungs-CRX-Datei herunterladen

Laden Sie IFrame New Tab-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        This extension allows you to embed a full-screen iframe into your new tab page containing a website of your choice. By embedding a website as opposed to redirecting to a URL, you don't have to wait for the tab to load before typing anything into the search bar. The address bar will keep its focus (unlike on redirect), allowing you to start typing immediately without having to click anything. Optionally you can also prevent the iframe from scrolling to hide any scrollbars.
Because this extension uses an iframe, not all websites will allow themselves to be embedded. This includes websites like google.com and many other big-name service providers that would rather you visit their sites directly. 
This project is open source and released under the MIT license. The source code is available at https://github.com/IdreesInc/IFrame-New-Tab
For more of my projects, visit my site at https://idreesinc.com                    

Grundlegende Informationen zur Erweiterung

Name IFrame New Tab IFrame New Tab
ID odhjpfjdlmcoajgnphnpnkapienploji
Offizielle URL https://chromewebstore.google.com/detail/iframe-new-tab/odhjpfjdlmcoajgnphnpnkapienploji
Beschreibung Embed a fullscreen iframe into your new tab page.
Dateigröße 65.75 KB
Installationsanzahl 590
Aktuelle Version 1.0
Letztes Update 2021-09-01
Veröffentlichungsdatum 2019-08-04
Bewertung 3.75/5 Insgesamt 4 Bewertungen
Entwickler https://idreesinc.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "IFrame New Tab",
    "description": "Embed a fullscreen iframe into your new tab page.",
    "version": "1.0",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        "jquery-3.4.1.min.js"
    ],
    "chrome_url_overrides": {
        "newtab": "iframe-new-tab.html"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "icons": {
        "128": "icon.png"
    }
}