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 هو إضافة Chrome تم تطويرها بواسطة Vectr, Inc.، والميزة الرئيسية لها هي "Replace your new tab page with Idenati, your home screen for the internet.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Idenati - The Internet Home Screen

قم بتنزيل ملفات الامتداد Idenati - The Internet Home Screen بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات 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
عنوان صفحة المساعدة https://idenati.com/support
عنوان صفحة سياسة الخصوصية 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"
    }
}