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 με φίλους για εύκολη εγκατάσταση των επεκτάσεων 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"
    }
}