Simple New Tab URL

Simply set the URL you want new tabs to load and it'll load it. No fluff.

Simple New Tab URL란 무엇입니까?

Simple New Tab URL은(는) https://zach-adams.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Simply set the URL you want new tabs to load and it'll load it. No fluff."입니다.

확장 프로그램 스크린샷

screenshot

Simple New Tab URL 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Very similar to other "New Tab URL" redirect extensions but this one is stripped down to the bare essentials. There are 4 options available:
- URL you want the new tab URL to be
- whether you want the URL to be auto-highlighted/selected on new tab page load (or if you want the focus on new tab load to be on your page)
- whether you wish to enable a light mode theme (it currently defaults to a dark theme)
- whether chrome should sync this setting

Note: If your new tab url is a local file (i.e. it starts with "file://" rather than "http://") then you will have to enable the "Allow access to file URLs" permission for this extension on the Manage Extensions page.

See source code here: https://github.com/zach-adams/simple-new-tab-url
Icon is "redo" by Mohamed Riyaz Ali from the Noun Project
https://thenounproject.com/term/redo/1175677/                    

확장 프로그램 기본 정보

이름 Simple New Tab URL Simple New Tab URL
ID pkklffjkfmhpoiepobbldnadjflciinb
공식 URL https://chromewebstore.google.com/detail/simple-new-tab-url/pkklffjkfmhpoiepobbldnadjflciinb
설명 Simply set the URL you want new tabs to load and it'll load it. No fluff.
파일 크기 13.16 KB
설치 횟수 316
현재 버전 1.2.1
최근 업데이트 2023-11-28
출시 날짜 2020-09-09
평점 5.00/5 총 7 개의 평점
개발자 https://zach-adams.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/zach-adams/simple-new-tab-url
도움말 페이지 URL https://github.com/zach-adams/simple-new-tab-url/issues
개인정보 보호 정책 페이지 URL https://zach-adams.com/privacy-policy/chrome-extensions.txt
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple New Tab URL",
    "short_name": "New Tab URL",
    "description": "Simply set the URL you want new tabs to load and it'll load it. No fluff.",
    "version": "1.2.1",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "homepage_url": "https:\/\/github.com\/zach-adams\/simple-new-tab-url",
    "minimum_chrome_version": "88",
    "options_page": "options.html",
    "chrome_url_overrides": {
        "newtab": "redirect.html"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "blank.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}