IFrame New Tab

Embed a fullscreen iframe into your new tab page.

IFrame New Tab là gì?

IFrame New Tab là một tiện ích mở rộng Chrome được phát triển bởi https://idreesinc.com, và tính năng chính của nó là "Embed a fullscreen iframe into your new tab page.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng IFrame New Tab

Tải xuống các tệp mở rộng IFrame New Tab dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên IFrame New Tab IFrame New Tab
ID odhjpfjdlmcoajgnphnpnkapienploji
URL Chính Thức https://chromewebstore.google.com/detail/iframe-new-tab/odhjpfjdlmcoajgnphnpnkapienploji
Mô tả Embed a fullscreen iframe into your new tab page.
Kích Thước Tệp 65.75 KB
Số Lần Cài Đặt 590
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2021-09-01
Ngày Phát Hành 2019-08-04
Đánh Giá 3.75/5 Tổng số 4 Đánh Giá
Nhà Phát Triển https://idreesinc.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}