New Tab Start Page
Customize New Tabs & More!
New Tab Start Page란 무엇입니까?
New Tab Start Page은(는) https://www.sermak.ca에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Customize New Tabs & More!"입니다.
확장 프로그램 스크린샷
New Tab Start Page 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
A multi purpose Chrome extension that does all this & more: - Set your Custom "Home Page" under Options, in this extension. - Open that Custom Page in "New Tab" instead of the Home Page. - Automatically force YouTube videos to play at high definition. - Right click on an Image to perform a Reverse Image search. - Right click after selecting a plain text URL to open as link. - Double click on a plain text link to open URL in a new tab. - Click icon (next to Menu) for a Cached version or Translation. - Select some Website text, click Ctrl+Alt (Opt) for Translation. - Privacy protection disables referral pings on Google Search. - Ability to change/spoof the browser 'User Agent' when needed. - Right-Click while holding Ctrl+Alt to remove a page element. - History Navigation: Hold Right Mouse button, swipe left/right. - Customize where new tabs open, and tab order when they close. - Basic cookie management allows for export, import and wipes. Security permissions that should be enabled for all the features: "Allow access to file URLs" is required if opening local files as new tabs. "Allow in private mode" has to be checked in order to work in incognito. "Allow access to search pages" needed for search engine result pages. Supports Chrome, Opera, Vivaldi, and Edge (Chromium) browsers.
확장 프로그램 기본 정보
이름 | New Tab Start Page |
ID | mjfahldkpjhcnfbbmdhpjolcjpcfhcpj |
공식 URL | https://chromewebstore.google.com/detail/new-tab-start-page/mjfahldkpjhcnfbbmdhpjolcjpcfhcpj |
설명 | Customize New Tabs & More! |
파일 크기 | 115 KB |
설치 횟수 | 3,097 |
현재 버전 | 31.1 |
최근 업데이트 | 2023-12-27 |
출시 날짜 | 2020-06-02 |
평점 | 4.40/5 총 77 개의 평점 |
개발자 | https://www.sermak.ca |
이메일 | [email protected] |
결제 유형 | free |
도움말 페이지 URL | https://www.sermak.ca/ |
개인정보 보호 정책 페이지 URL | https://www.sermak.ca/Privacy.pdf |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "background": { "persistent": true, "scripts": [ "background.js" ] }, "browser_action": { "default_popup": "popup.html", "default_title": "NTSP" }, "chrome_url_overrides": { "newtab": "newtab.html" }, "content_scripts": [ { "all_frames": true, "js": [ "content-id.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_idle" }, { "all_frames": true, "js": [ "content-st.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "run_at": "document_start" } ], "description": "Customize New Tabs & More!", "homepage_url": "https:\/\/sermak.ca", "icons": { "128": "newtab.png" }, "incognito": "split", "manifest_version": 2, "name": "New Tab Start Page", "options_page": "options.html", "permissions": [ "cookies", "webRequest", "webRequestBlocking", "tabs", "contextMenus", "clipboardWrite", "clipboardRead", "storage", "http:\/\/*\/*", "https:\/\/*\/*", "file:\/\/\/*" ], "short_name": "NTSP", "version": "31.1", "web_accessible_resources": [ "*.html", "*.svg" ] } |