Smart New Tab

A smarter new tab page for everyone

Smart New Tab란 무엇입니까?

Smart New Tab은(는) https://bewisse.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A smarter new tab page for everyone"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

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

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

확장 프로그램 사용 설명서

                        Smart New Tab gives you quick access to what you need in your New Tab screen.

** Features **
- Top visited sites
- Search with clipboard text
- Recent searches on Google
- Recently closed tabs across all devices
- Recent browse history
- Apps
- Weather
- Automatically update background picture
- Add more shortcut

** Version 1.1.2 **
- Improve the initial experience

** Version 1.1.1 **
- Hide empty app bar and make list collapsible

** Version 1.1.0 **
- Make most permissions optional. User can selectively decide which permission to grant in the extension.

Official website:
https://bewisse.com/newtab/

Source code:
https://github.com/bewisse/newtab                    

확장 프로그램 기본 정보

이름 Smart New Tab Smart New Tab
ID ppbaflbhifnaoimjkaogodphnbhdgmfi
공식 URL https://chrome.google.com/webstore/detail/smart-new-tab/ppbaflbhifnaoimjkaogodphnbhdgmfi
설명 A smarter new tab page for everyone
파일 크기 508 KB
설치 횟수 128
현재 버전 1.1.3
최근 업데이트 2021-06-29
출시 날짜 2020-04-26
평점 5.00/5 총 1 개의 평점
개발자 https://bewisse.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://bewisse.com/newtab/
도움말 페이지 URL https://bewisse.com/newtab/
개인정보 보호 정책 페이지 URL https://modheader.com/privacy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Smart New Tab",
    "version": "1.1.3",
    "description": "A smarter new tab page for everyone",
    "author": "[email protected]",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "24": "icons\/24.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "64": "icons\/64.png",
        "128": "icons\/128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": {
            "16": "icons\/16.png",
            "24": "icons\/24.png",
            "48": "icons\/48.png",
            "64": "icons\/64.png",
            "128": "icons\/128.png"
        },
        "default_popup": "popup\/popup.html"
    },
    "permissions": [
        "chrome:\/\/favicon\/",
        "https:\/\/www.google.com\/*",
        "storage"
    ],
    "optional_permissions": [
        "tabs",
        "clipboardRead",
        "topSites",
        "history",
        "management",
        "sessions"
    ],
    "chrome_url_overrides": {
        "newtab": "pages\/newtab.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}