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文件

下载Idenati - The Internet Home Screen扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
    }
}