New Tab Custom URL

New Tab Custom URL changes the default URL of a newly opened tab in chrome :o

New Tab Custom URL란 무엇입니까?

New Tab Custom URL은(는) https://jakegines.in에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Chrome does not allow the user to customize the landing page upon opening a new tab. Today, that changes - with New Tab Custom URL!

This extension allows the user to seamlessly change the default URL of newly opened chrome tab to a website or a local file.                    

확장 프로그램 기본 정보

이름 New Tab Custom URL New Tab Custom URL
ID pknneknjkcgapofljjfppcdackmcmnba
공식 URL https://chromewebstore.google.com/detail/new-tab-custom-url/pknneknjkcgapofljjfppcdackmcmnba
설명 New Tab Custom URL changes the default URL of a newly opened tab in chrome :o
파일 크기 9.73 KB
설치 횟수 50
현재 버전 0.0.0.2
최근 업데이트 2021-12-25
출시 날짜 2021-12-24
평점 5.00/5 총 1 개의 평점
개발자 https://jakegines.in
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://jakegines.in/archive/New_Tab_Custom_URL
개인정보 보호 정책 페이지 URL https://jakegines.in/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "New Tab Custom URL",
    "version": "0.0.0.2",
    "manifest_version": 2,
    "description": "New Tab Custom URL changes the default URL of a newly opened tab in chrome :o",
    "icons": {
        "64": "logo.png"
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_title": "New-Tab-Custom-URL"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs"
    ]
}