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."입니다.
확장 프로그램 스크린샷
IFrame New Tab 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
ID | odhjpfjdlmcoajgnphnpnkapienploji |
공식 URL | 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" } } |