Idenati - The Internet Home Screen

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

¿Qué es Idenati - The Internet Home Screen?

Idenati - The Internet Home Screen es una extensión de Chrome desarrollada por Vectr, Inc., y su función principal es "Replace your new tab page with Idenati, your home screen for the internet.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Idenati - The Internet Home Screen

Descarga archivos de extensión Idenati - The Internet Home Screen en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Idenati - The Internet Home Screen Idenati - The Internet Home Screen
ID amnaimdfodceanepoanccendipbjemkp
URL Oficial https://chrome.google.com/webstore/detail/idenati-the-internet-home/amnaimdfodceanepoanccendipbjemkp
Descripción Replace your new tab page with Idenati, your home screen for the internet.
Tamaño del Archivo 7.17 MB
Cantidad de Instalaciones 47,286
Versión Actual 6.0.0
Última Actualización 2022-10-11
Fecha de Publicación 2021-05-18
Calificación 3.63/5 Total de 24 Calificaciones
Desarrollador Vectr, Inc.
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://idenati.com
URL de la Página de Ayuda https://idenati.com/support
URL de la Página de Política de Privacidad https://idenati.com/privacy
Idiomas Soportados 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"
    }
}