Fast New Tab Redirect Reborn

Change the redirect page to something a little more personal

Fast New Tab Redirect Reborn란 무엇입니까?

Fast New Tab Redirect Reborn은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Change the redirect page to something a little more personal"입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        Change the redirect page to something a little more personal.

This extension enables to user to select custom URLs to replace their default Chrome new tab page.

Although the new tab page has gotten better of these years, some (myself included) require something a little personal. This extension allows user freedom in a lightweight and snappy package. 

Privacy Policy: Regarding the permissions required to automate the new URL redirect, this extension does not and will never record any user data. 
There is no hidden communication with any external sites. 

This project is open source and I would love your input to what should be changed. You can see the entire source code for this listing at the following link:

https://github.com/scottzach1/fast-new-tab-redirect-reborn                    

확장 프로그램 기본 정보

이름 Fast New Tab Redirect Reborn Fast New Tab Redirect Reborn
ID acgndeknalmchjdgfibacnacagfmgkfm
공식 URL https://chromewebstore.google.com/detail/fast-new-tab-redirect-reb/acgndeknalmchjdgfibacnacagfmgkfm
설명 Change the redirect page to something a little more personal
파일 크기 89.45 KB
설치 횟수 404
현재 버전 1.0
최근 업데이트 2020-06-02
출시 날짜 2020-05-31
평점 4.70/5 총 10 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/scottzach1/fast-new-tab-redirect-reborn
도움말 페이지 URL https://github.com/scottzach1/fast-new-tab-redirect-reborn/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fast New Tab Redirect Reborn",
    "description": "Change the redirect page to something a little more personal",
    "version": "1.0",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "chrome_url_overrides": {
        "newtab": "dummy.html"
    },
    "permissions": [
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "128": "images\/icon-128.png",
        "256": "images\/icon-256.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}