Idenati - The Internet Home Screen

Replace your new tab page with Idenati, your home screen for the internet.

Idenati - The Internet Home Screen란 무엇입니까?

Idenati - The Internet Home Screen은(는) Vectr, Inc.에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Replace your new tab page with Idenati, your home screen for the internet."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Idenati - The Internet Home Screen 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        It helps you organize and access all of your digital information in one place, including your favorite websites, passwords, notes, and more.

By installing this browser extension, you can:
1. Set Idenati as your new tab page.
2. Generate, save, and automatically fill in your passwords.
3. Add new tiles to Idenati as you browse.                    

확장 프로그램 기본 정보

이름 Idenati - The Internet Home Screen Idenati - The Internet Home Screen
ID amnaimdfodceanepoanccendipbjemkp
공식 URL https://chrome.google.com/webstore/detail/idenati-the-internet-home/amnaimdfodceanepoanccendipbjemkp
설명 Replace your new tab page with Idenati, your home screen for the internet.
파일 크기 7.17 MB
설치 횟수 47,286
현재 버전 6.0.0
최근 업데이트 2022-10-11
출시 날짜 2021-05-18
평점 3.63/5 총 24 개의 평점
개발자 Vectr, Inc.
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://idenati.com
도움말 페이지 URL https://idenati.com/support
개인정보 보호 정책 페이지 URL https://idenati.com/privacy
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "Replace your new tab page with Idenati, your home screen for the internet.",
    "version": "6.0.0",
    "manifest_version": 3,
    "name": "Idenati - The Internet Home Screen",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "logo.png"
    },
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "all_frames": false,
            "js": [
                "autofillContentScript.bundle.js",
                "autofillerContentScript.bundle.js",
                "notificationsContentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "https:\/\/idenati.com\/*",
                "https:\/\/labs.idenati.com\/*",
                "https:\/\/stg.idenati.com\/*",
                "http:\/\/localhost:8080\/*"
            ],
            "js": [
                "idenatiContentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ],
            "run_at": "document_start"
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-34.png",
                "icon-blue.png",
                "logo.png"
            ],
            "matches": []
        },
        {
            "resources": [
                "iframe.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "storage",
        "cookies",
        "tabs",
        "history"
    ],
    "host_permissions": [
        ""
    ],
    "externally_connectable": {
        "matches": [
            "https:\/\/idenati.com\/*",
            "https:\/\/labs.idenati.com\/*",
            "https:\/\/stg.idenati.com\/*",
            "http:\/\/localhost\/*"
        ]
    },
    "chrome_url_overrides": {
        "newtab": "newTab.html"
    }
}