IFrame New Tab

Embed a fullscreen iframe into your new tab page.

什麼是IFrame New Tab?

IFrame New Tab是由https://idreesinc.com開發的Chrome擴展程式,該擴展的主要功能是“Embed a fullscreen iframe into your new tab page.”。

擴展截圖

screenshot

下載IFrame New Tab擴展crx文件

下載IFrame New Tab擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 IFrame New Tab IFrame New Tab
ID odhjpfjdlmcoajgnphnpnkapienploji
官方網址 https://chromewebstore.google.com/detail/iframe-new-tab/odhjpfjdlmcoajgnphnpnkapienploji
簡介 Embed a fullscreen iframe into your new tab page.
檔案大小 65.75 KB
安裝次數 590
目前版本 1.0
更新時間 2021-09-01
上架時間 2019-08-04
評分 3.75/5 共 4 次評分
開發者 https://idreesinc.com
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}