New Tab Redirect

Redirects your 'new tab' to an external website.

New Tab Redirect란 무엇입니까?

New Tab Redirect은(는) https://joshuahemphill.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Redirects your 'new tab' to an external website."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        A basic extension to redirect the 'New Tab' to an external site of your choosing.
Make sure you keep seeing your notes or important info when you're browsing.

A minimal extension; no background scripts or unnecessary permissions.

For issues and suggestions open a github issue.

Backend Description:
The extension implements a temporary 'New Tab Page' that when loaded, immediately queries the extension storage for your set redirect page, and then proceeds to redirect.
Removed any background scripts so that it only runs when you initiate it.                    

확장 프로그램 기본 정보

이름 New Tab Redirect New Tab Redirect
ID gjhaadblnhgegfaegeekjlhaciebchfk
공식 URL https://chromewebstore.google.com/detail/new-tab-redirect/gjhaadblnhgegfaegeekjlhaciebchfk
설명 Redirects your 'new tab' to an external website.
파일 크기 32.8 KB
설치 횟수 504
현재 버전 1.1
최근 업데이트 2020-11-25
출시 날짜 2020-02-19
평점 5.00/5 총 3 개의 평점
개발자 https://joshuahemphill.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/josh-hemphill/redirect-newtab-ext
도움말 페이지 URL https://github.com/josh-hemphill/redirect-newtab-ext
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "New Tab Redirect",
    "description": "Redirects your 'new tab' to an external website.",
    "version": "1.1",
    "author": "Joshua Hemphill",
    "browser_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png",
            "48": "images\/icon48.png",
            "64": "images\/icon64.png",
            "128": "images\/icon128.png"
        },
        "default_title": "New-Tab Redirect",
        "default_popup": "popup\/index.html"
    },
    "offline_enabled": false,
    "short_name": "Tab Redirect",
    "permissions": [
        "storage"
    ],
    "chrome_url_overrides": {
        "newtab": "tab-redirect\/index.html"
    }
}